移动的机制我想将我的所有密钥从特定的数据库复制到另一个数据库.如果是,可以在redis中使用吗?
如果由于您的redis版本而无法使用MIGRATE COPY,则可能需要单独复制每个密钥,这需要更长的时间,但不需要您登录到计算机本身,并允许您将数据从一个数据库移动到另一个数据库.这是我如何将所有键从一个数据库复制到另一个数据库(但不保留ttls)
#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
密钥不会被覆盖,因为在复制之前删除密钥或在启动之前刷新整个数据库.