redis定期删除
文档
官方文档
下载地址
说明
- 版本选择:
redis-7.0.0.tar.gz - 下载地址:https://download.redis.io/releases/redis-7.0.0.tar.gz
redis定期删除
安装redis
- 以单机版redis为例,安装redis参考文档:redis单机安装
定期删除
-
在
redis.conf中,找到ADVANCED CONFIG相关的配置 -
官方文档
conf############################### ADVANCED CONFIG ############################### # (还有其它配置) # Redis calls an internal function to perform many background tasks, like # closing connections of clients in timeout, purging expired keys that are # never requested, and so forth. # # Not all tasks are performed with the same frequency, but Redis checks for # tasks to perform according to the specified "hz" value. # # By default "hz" is set to 10. Raising the value will use more CPU when # Redis is idle, but at the same time will make Redis more responsive when # there are many keys expiring at the same time, and timeouts may be # handled with more precision. # # The range is between 1 and 500, however a value over 100 is usually not # a good idea. Most users should use the default of 10 and raise this up to # 100 only in environments where very low latency is required. hz 10 -
中文翻译
conf############################### ADVANCED CONFIG ############################### # Redis 调用内部函数来执行许多后台任务,例如 # 关闭超时客户端的连接、清除从未被请求的过期键等等。 # # 并非所有任务都以相同的频率执行,但 Redis 会根据指定的 "hz" 值 # 来检查需要执行的任务。 # # 默认情况下 "hz" 设置为 10。提高该值会在 Redis 空闲时使用更多 CPU, # 但同时,当有大量键同时过期时,Redis 会响应更快, # 并且可以更精确地处理超时。 # # 取值范围在 1 到 500 之间,但通常不建议超过 100。 # 大多数用户应该使用默认值 10,只有在需要极低延迟的环境中 # 才将其提高到 100。 hz 10
参考资料
注意事项
- 部分内容由AI生成
- 如有不对,欢迎指正!!!