Last active
February 27, 2025 19:54
-
-
Save jozsefs/fff1dca9d64ca245310360b158cf9bdc 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 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
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