Skip to content

Instantly share code, notes, and snippets.

@bugant
Created December 6, 2013 09:59
Show Gist options
  • Save bugant/7821322 to your computer and use it in GitHub Desktop.
Save bugant/7821322 to your computer and use it in GitHub Desktop.
Using redis-cli to configure Redis save option
matteo@fungo ~$ redis-cli
redis 127.0.0.1:6379> config get save
1) "save"
2) "3600 1 300 100 60 10000"
redis 127.0.0.1:6379> config set save "3600 2 200 50"
OK
redis 127.0.0.1:6379> config get save
1) "save"
2) "3600 2 200 50"
redis 127.0.0.1:6379>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment