在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
redis是我们现在最常用的一个工具,帮助我们建设系统的高可用,高性能。 而且我们都知道redis是一个完全基于内存的工具,这也是redis速度快的一个原因,当我们往redis中不断缓存数据的时候,其内存总有满的时候(而且内存是很贵的东西,尽量省着点用),所以尽可能把有用的数据,或者使用频繁的数据缓存在redis中,物尽其用。 那么如果正在使用的redis内存用完了,我们应该怎么取舍redis中已存在的数据和即将要存入的数据呢,我们要怎么处理呢? redis官方提供了8种不同的淘汰策略 redis.conf 是个好东西,几乎redis的所有配置都可以在这里找到,根据conf中的说明也就能操作了 我们看下redis.conf中关于8中淘汰策略的说明(本文使用redis版本是4.0.9) volatile-lru -> Evict using approximated LRU among the keys with an expire set. allkeys-lru -> Evict any key using approximated LRU. volatile-lfu -> Evict using approximated LFU among the keys with an expire set. allkeys-lfu -> Evict any key using approximated LFU. volatile-random -> Remove a random key among the ones with 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. # LRU means Least Recently Used(最近最少使用的,时间) # LFU means Least Frequently Used(最不经常使用的,次数) # The default is: maxmemory-policy noeviction 上文是从redis.conf中摘出来关于淘汰策略的8种配置以及设置说明,其中maxmemory-policy noeviction 代表了淘汰策略默认的是noeviction,我们可以根据自己的业务需求修改合适的策略。 8种淘汰策略
上面是内存不足的淘汰策略,还有一种是过期键的删除策略,两者是不同,不要搞混了 过期键的删除策略
expires字典会保存所有设置了过期时间的key的过期时间数据,其中, 总结
|
请发表评论