forked from docs/doc-exports
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: Chen, Junjie <chenjunjie@huawei.com> Co-committed-by: Chen, Junjie <chenjunjie@huawei.com>
3.5 KiB
3.5 KiB
What Is the Default Data Eviction Policy?
Data is evicted from cache based on a user-defined space limit in order to make space for new data.
You can change the eviction policy by configuring the maxmemory-policy parameter.
When maxmemory is reached, you can select one of the following eight eviction policies:
- noeviction: When the memory limit is reached, DCS instances return errors to clients and no longer process write requests and other requests that could result in more memory to be used. However, DEL and a few more exception requests can continue to be processed.
- allkeys-lru: DCS instances try to evict the least recently used keys first, in order to make space for new data.
- volatile-lru: DCS instances try to evict the least recently used keys with an expire set first, in order to make space for new data.
- allkeys-random: DCS instances recycle random keys so that new data can be stored.
- volatile-random: DCS instances evict random keys with an expire set, in order to make space for new data.
- volatile-ttl: DCS instances evict keys with an expire set, and try to evict keys with a shorter time to live (TTL) first, in order to make space for new data.
- allkeys-lfu: DCS instances evict the least frequently used keys from all keys.
- volatile-lfu: DCS instances evict the least frequently used keys with an expire field from all keys.
Parent topic: Redis Usage