How can you disable snapshotting on a running Redis instance?
You can disable the "save" setting in the Redis configuration by commenting out the "save" lines. E.g.,
#save 900 1
#save 300 10
#save 60 10000
However, Redis lacks a command to reload its configuration without restarting. How can I remove the "save" settings from a running instance of Redis? There seems to be no CONFIG DEL or CONFIG UNSET commands, and I didn't see anything related to this in CONFIG GET or CONFIG SET.