File tree Expand file tree Collapse file tree
docs/hypernode-platform/redis Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,41 +52,33 @@ hypernode-systemctl settings redis_eviction_policy allkeys-lru
5252## Policy explanation
5353
5454### ` noeviction `
55-
5655Redis will not evict any keys when memory is full. New write operations
5756that require memory will fail.
5857
5958### ` allkeys-lru `
60-
6159Redis can evict any key and removes the least recently used keys first.
6260
6361### ` allkeys-lfu `
64-
6562Redis can evict any key and removes the least frequently used keys first.
6663
6764### ` allkeys-random `
68-
6965Redis can evict any key and removes keys at random.
7066
7167### ` volatile-lru `
72-
7368Redis only evicts keys with an expiration time and removes the least
7469recently used keys first.
7570
7671This is the default policy on Hypernode.
7772
7873### ` volatile-lfu `
79-
8074Redis only evicts keys with an expiration time and removes the least
8175frequently used keys first.
8276
8377### ` volatile-ttl `
84-
8578Redis only evicts keys with an expiration time and prefers keys that will
8679expire soonest.
8780
8881### ` volatile-random `
89-
9082Redis only evicts keys with an expiration time and removes those keys at
9183random.
9284
You can’t perform that action at this time.
0 commit comments