summaryrefslogtreecommitdiff
path: root/redis.conf
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2012-01-16 16:50:24 +0100
committerantirez <antirez@gmail.com>2012-01-16 16:50:24 +0100
commit4aac3ff2473b4e70dd503ff5c65891146dac30fc (patch)
treeab070632e06df50b383ffaacda44e7fcf707b509 /redis.conf
parentebdfad69dce1b3a1a48960328e5f6c3ed8fafa41 (diff)
downloadredis-4aac3ff2473b4e70dd503ff5c65891146dac30fc.tar.gz
It is now posible to flush all the previous saving points in redis.conf by using a save directive with a single empty string argument, like it happens for CONFIG SET save.
Diffstat (limited to 'redis.conf')
-rw-r--r--redis.conf6
1 files changed, 6 insertions, 0 deletions
diff --git a/redis.conf b/redis.conf
index 29e326d12..1d2b5a5e2 100644
--- a/redis.conf
+++ b/redis.conf
@@ -82,6 +82,12 @@ databases 16
# after 60 sec if at least 10000 keys changed
#
# 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