Skip to main content
Enable Valkey (Redis-compatible) at hosting-panel.net under ToolsValkey Manager. There you set maximum memory and the eviction policy. The max memory choices depend on your plan:
PlanMax memory options
Micro128MB
Small128MB, 256MB
Medium128MB, 256MB, 384MB
Large128MB, 256MB, 384MB, 512MB
Eviction policies:
PolicyMeaning
volatile-lruEvicts least recently used keys that have an expiry.
noevictionReturns an error when memory is full.
allkeys-lruEvicts least recently used keys, expiry or not.
volatile-lfuEvicts least frequently used keys that have an expiry.
allkeys-lfuEvicts least frequently used keys, expiry or not.
volatile-randomEvicts a random key that has an expiry.
allkeys-randomEvicts a random key, expiry or not.