Difference between revisions of "Redis Key eviction"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[redis.conf]] | + | <code>[[redis.conf]]</code> |
.../... | .../... | ||
# volatile-lru -> Evict using approximated LRU, only keys with an expire set. | # volatile-lru -> Evict using approximated LRU, only keys with an expire set. | ||
Line 12: | Line 12: | ||
# noeviction -> Don't evict anything, just return an error on write operations. | # noeviction -> Don't evict anything, just return an error on write operations. | ||
.../... | .../... | ||
+ | |||
+ | == Related == | ||
+ | * [[Elasticache eviction policy]] | ||
Latest revision as of 15:06, 12 December 2023
.../... # volatile-lru -> Evict using approximated LRU, only keys with an expire set. # allkeys-lru -> Evict any key using approximated LRU. # volatile-lfu -> Evict using approximated LFU, only keys with an expire set. # allkeys-lfu -> Evict any key using approximated LFU. # volatile-random -> Remove a random key having an expire set. # allkeys-random -> Remove a random key, any key. # volatile-ttl -> Remove the key with the nearest expire time (minor TTL) # noeviction -> Don't evict anything, just return an error on write operations. .../...
Related[edit]
See also[edit]
Advertising: