-
-
Save nicc777/458097644e70c11fa100c8b1e3cb65a2 to your computer and use it in GitHub Desktop.
dump redis keys with value (human readable values, not using the DUMP from redis). TBH if you have 10k+ keys this will take a lot of time
This file contains 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
redis-cli keys \* | while read key; do value="`redis-cli get "$key"`"; echo "$key: $value"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment