Created
February 6, 2015 11:49
-
-
Save albertofem/ead7eb36ce8bbf2f6150 to your computer and use it in GitHub Desktop.
redis-copy-network
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
#!/bin/bash | |
source_host=localhost | |
source_port=6379 | |
source_db=0 | |
target_host=localhost | |
target_port=23123 | |
target_db=0 | |
# copy all keys (no TTL) | |
redis-cli 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