High-performance caching with in-memory LRU, Redis, and tiered strategies.
Fast LRU cache with TTL support for single-instance deployments.
Combine fast local cache with distributed Redis for best of both worlds.
Multiple strategies for keeping cache data fresh.
Structured keys with tenant and parameter support.
| Backend | Use Case | Latency | Shared |
|---|---|---|---|
| MemoryCache | Single instance, hot data | ~100ns | ❌ |
| RedisCache | Distributed, shared state | ~1-5ms | ✅ |
| TieredCache | Best of both | ~100ns (L1 hit) | ✅ |