Redis
Managed Redis instances for caching, sessions, queues, and real-time features. Provisioned with persistent storage and password authentication.
Eviction Policies
The eviction policy can be set at creation and updated at any time via the dashboard or API. Changes take effect immediately.
| Policy | Description |
|---|---|
allkeys-lru | Evict least recently used keys (default) |
allkeys-lfu | Evict least frequently used keys |
allkeys-random | Evict random keys |
volatile-lru | Evict LRU keys with TTL set |
volatile-lfu | Evict LFU keys with TTL set |
volatile-random | Evict random keys with TTL set |
volatile-ttl | Evict keys with shortest TTL |
noeviction | Return error when memory full |
connection
REDIS_URL=redis://:password@localhost:6379