From 4aac3ff2473b4e70dd503ff5c65891146dac30fc Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 16 Jan 2012 16:50:24 +0100 Subject: 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. --- redis.conf | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'redis.conf') 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 -- cgit v1.2.1