Enable Valkey (Redis-compatible) at hosting-panel.net under Tools → Valkey Manager. There you set maximum memory and the eviction policy. The max memory choices depend on your plan:Documentation Index
Fetch the complete documentation index at: https://perfgrid.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
| Plan | Max memory options |
|---|---|
| Micro | 128MB |
| Small | 128MB, 256MB |
| Medium | 128MB, 256MB, 384MB |
| Large | 128MB, 256MB, 384MB, 512MB |
| Policy | Meaning |
|---|---|
volatile-lru | Evicts least recently used keys that have an expiry. |
noeviction | Returns an error when memory is full. |
allkeys-lru | Evicts least recently used keys, expiry or not. |
volatile-lfu | Evicts least frequently used keys that have an expiry. |
allkeys-lfu | Evicts least frequently used keys, expiry or not. |
volatile-random | Evicts a random key that has an expiry. |
allkeys-random | Evicts a random key, expiry or not. |