Difference between revisions of "Redis Key eviction"

From wikieduonline
Jump to navigation Jump to search
 
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


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

Related[edit]


See also[edit]

Advertising: