首页 > 其他 > 详细

redis内存回收

时间:2021-06-18 23:33:49      阅读:29      评论:0      收藏:0      [点我收藏+]
1.定时过期expilre     expire key TTL 10定时器  主动淘汰
2.惰性过期  被动淘汰
3getCommand 
expireIfNeed()


设置内存上线   set   memory   上线
activeExpireCycle()


redis使用了   惰性过期 + 定期过期


达到了最大内存上线后根据内存淘汰规则


# volatile-lru -> remove the key with an expire set using an LRU algorithm
# allkeys-lru -> remove any key according 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内存回收

原文:https://www.cnblogs.com/wangbiaohistory/p/14901340.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!