Created
December 6, 2013 09:59
-
-
Save bugant/7821322 to your computer and use it in GitHub Desktop.
Using redis-cli to configure Redis save option
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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