redis.conf详解之lazyfree-lazy-user-
2022-02-28 本文已影响0人
小易哥学呀学
本文基于
redis_version:6.2.5
用法
修改del
命令的默认行为,使之与unlink
命令一毛一样
lazyfree-lazy-user-del yes
注意事项:
-
lazyfree-lazy-user-del
支持yes
或者no
。默认是no
。 - 如果设置为
yes
,那么del
命令就等价于unlink
,也是非阻塞删除。
源码实现
redis_del_lazyfree-lazy-user-del.pngdel
与unlink
命令底层均调用delGenericCommand
方法,区别是unlink
第二个参数传的是1,del
传的是lazyfree-lazy-user-del
,所以如果lazyfree-lazy-user-del
配置的是yes
的话,那么del
命令的功能就等价于unlink
。
原生注释
# 翻译概要:将代码中的del替换成unlink可能不是那么太容易,所以为了让del
# 命令的实际效果等价于unlink,你可以修改配置文件为lazyfree-lazy-user-del yes
#
# It is also possible, for the case when to replace the user code DEL calls
# with UNLINK calls is not easy, to modify the default behavior of the DEL
# command to act exactly like UNLINK, using the following configuration
# directive:
lazyfree-lazy-user-del no
本文属于原创,首发于微信公众号【小易哥学呀学】,如需转载请后台留言。