sh 来自https://stackoverflow.com/questions/23222616/copy-all-keys-from-one-db-to-another-in-redis
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 来自https://stackoverflow.com/questions/23222616/copy-all-keys-from-one-db-to-another-in-redis相关的知识,希望对你有一定的参考价值。
#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 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
以上是关于sh 来自https://stackoverflow.com/questions/23222616/copy-all-keys-from-one-db-to-another-in-redis的主要内容,如果未能解决你的问题,请参考以下文章
sh 等待来自URL的200响应循环
sh 来自cacher
sh 来自env文件的Docker机密
sh 我的自卸车装载来自备份
sh 来自终端的快速提醒(bash)
如何使用来自 Java 文本字段的用户输入运行 .sh 脚本?