Created
June 5, 2020 08:51
-
-
Save cybertxt/c16961aa4651c0deb0867c9ca1dc3862 to your computer and use it in GitHub Desktop.
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
#set connection data accordingly | |
source_host=localhost | |
source_port=6379 | |
source_db=0 | |
target_host=localhost | |
target_port=6379 | |
target_db=1 | |
#copy all keys without preserving ttl! | |
redis-cli -h $source_host -p $source_port -n $source_db keys \* | while read key; | |
do | |
echo "Copying $key"; | |
redis-cli --raw -h $source_host -p $source_port -n $source_db DUMP "$key" | head -c -1 | redis-cli -x -h $target_host -p $target_port -n $target_db RESTORE "$key" 0; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment