> For the complete documentation index, see [llms.txt](https://docs.eiffel.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eiffel.dev/features/caching/api/cachesource.md).

# CacheSource

```csharp
/// <summary>
/// Cache sources
/// </summary>
public enum CacheSource
{
    /// <summary>
    /// Default
    /// </summary>
    None = 0,
    
    /// <summary>
    /// In-Memory caching
    /// </summary>
    InMemory = 1,
    
    /// <summary>
    /// Redis
    /// </summary>
    Redis = 2
}
```
