在redis.conf中保存配置有三个选项,如下所示,我想知道其中哪个选项将被选择在运行redis服务器的位置。
save 900 1
save 300 10
save 60 10000发布于 2015-06-17 06:51:05
一旦Redis服务器运行,所有这些都将一起使用。以下是redis.conf文件中这些指令上方的行:
# In the example below the behaviour will be to save:
# after 900 sec (15 min) if at least 1 key changed
# after 300 sec (5 min) if at least 10 keys changed
# after 60 sec if at least 10000 keys changedhttps://stackoverflow.com/questions/30882646
复制相似问题