码迷,mamicode.com
首页 > 其他好文 > 详细

redis-操作脚本

时间:2019-10-02 16:25:02      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:匹配   restore   strong   rate   res   span   scan   tag   tmp   

1:将redis key读出到文本中
redis-cli -c -h $host3 -p $port3 --scan --pattern "usertags_uid_*" > /tmp/node3.log

2:使用循环匹配将redis 导入到目标机器
#!/bin/bash
host=$1
port=$2
pass=$3
file=$4
if [ $# -ne 4 ];then
echo "Usage: $0 ip port pass  file"
exit
fi
cat $file|while read line
do
redis-cli -c  -h $host -p $port -a $pass del $line 
done



3:迁移key
#!/bin/bash
src_ip=xxx
src_port=6379
src_pass=x‘x‘x

dest_ip=xxx
dest_port=6379
dest_pass=xxx
file=$1
if [ $# -ne 1 ];then
echo "Usage: $0 file"
exit
fi
i=1
cat $file|while read line
do
    redis-cli -h $src_ip -p $src_port -a $src_pass --raw dump $line | perl -pe ‘chomp if eof‘ | redis-cli -h $dest_ip -p $dest_port  -a $dest_pass -n 0 -x restore $line 0
    echo "$i migrate key $line"
    ((i++))
done

 

redis-操作脚本

标签:匹配   restore   strong   rate   res   span   scan   tag   tmp   

原文地址:https://www.cnblogs.com/monkeybron/p/11617434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!