这显然在redis.conf中,
# Note: you can disable saving at all commenting all the "save" lines.## It is also possible to remove all the previously configured save# points by adding a save directive with a single empty string argument# like in the following example:## save ""save 900 1save 300 10save 60 10000
上面的文本在redis.conf中,如果您不想保存rdb文件,请在保存的三行注释,例如
# Note: you can disable saving at all commenting all the "save" lines.## It is also possible to remove all the previously configured save# points by adding a save directive with a single empty string argument# like in the following example:## save ""# save 900 1# save 300 10# save 60 10000



