主页 > 知识库 > Redis的LRU机制介绍

Redis的LRU机制介绍

热门标签:天音通信电话机器人 高德地图标注商家在哪 机器人电话机创意绘画 江西南昌百应电话机器人 随州营销电话机器人怎么样 400电话申请怎么看 400电话从哪里申请滨州 杭州400电话如何申请的 hbuilder地图标注

在Redis中,如果设置的maxmemory,那就要配置key的回收机制参数maxmemory-policy,默认volatile-lru,参阅Redis作者的原博客:antirez weblog >> Redis as an LRU cache

原文中写得很清楚:

复制代码 代码如下:

Another way to use Redis as a cache is the maxmemory directive, a feature that allows specifying a maximum amount of memory to use. When new data is added to the server, and the memory limit was already reached, the server will remove some old data deleting a volatile key, that is, a key with an EXPIRE (a timeout) set, even if the key is still far from expiring automatically.

在Redis服务器占用内存达到maxmemory的情况下,当再想增加内存占用时,会按maxmemory-policy机制将老的数据删除。这里简单说一下volatile-lru,Redis会按LRU算法删除设置了过期时间但还没有过期的key,而对于没有设置过期时间的key,Redis是永远保留的。当然,如果你不想删除没有过期的key,那可以使用noeviction机制
复制代码 代码如下:

# MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
# is reached? You can select among five behavior:
#
# volatile-lru -> remove the key with an expire set using an LRU algorithm
# allkeys-lru -> remove any key accordingly to the LRU algorithm
# volatile-random -> remove a random key 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 expire at all, just return an error on write operations

您可能感兴趣的文章:
  • 如何高效使用Redis作为LRU缓存
  • Redis中LRU淘汰策略的深入分析
  • Redis缓存常用4种策略原理详解
  • 手动实现Redis的LRU缓存机制示例详解

标签:昆明 鹤岗 葫芦岛 石嘴山 保定 沈阳 招商 常德

巨人网络通讯声明:本文标题《Redis的LRU机制介绍》,本文关键词  Redis,的,LRU,机制,介绍,Redis,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《Redis的LRU机制介绍》相关的同类信息!
  • 本页收集关于Redis的LRU机制介绍的相关信息资讯供网民参考!
  • 推荐文章