How to disable persistence with redis?
redis
Solution
To disable all data persistence in Redis do the following in the `redis.conf` file:
Disable AOF by setting the `appendonly` configuration directive to `no` (it is the default value). like this:
appendonly no
Disable RDB snapshotting by commenting all of the `save` configuration directives (there are 3 that are defined by default) and explicitly disabling saving:
#save 900 1
#save 300 10
#save 60 10000
save ""
After change, make sure you restart Redis to apply them.
Alternatively, you can use the `CONFIG SET` command to apply these changes during runtime (just make sure you also do a `CONFIG REWRITE` to persist the changes).
Note: depending on your Redis' version, there are other tweaks that prevent Redis from accessing the disk for replication-related tasks.
Problem
I was wondering how to disable presistence in redis. There is mention of the possibility of doing this here: http://redis.io/topics/persistence. I mean it in the exact same sense as described there. Any help would be very much appreciated!