Difference between revisions of "Redis Key eviction"

From wikieduonline
Jump to navigation Jump to search
(Created page with " * {{redis.conf}}")
 
Line 1: Line 1:
  
  
 +
[[redis.conf]]
 +
.../...
 +
# 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.
 +
.../...
  
  
 +
== See also ==
 
* {{redis.conf}}
 
* {{redis.conf}}
 +
 +
[[Category:Redis]]

Revision as of 15:06, 12 December 2023


redis.conf

.../...
# 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.
.../...


See also

Advertising: