文章摘要:redis怎么循环插入 怎么操作redis
redis循环插入的方法: 1.写一个shell脚本,如: for((i=1;i> /tmp/_t.txt d […]
redis循环插入的方法:
1.写一个shell脚本,如:
for((i=1;i<=1000000;i++))
do
echo "set k$i v$i" >> /tmp/_t.txt
done
2.linux或者windows上生成的文件不能直接当做redis语句来跑,因此需要转换。方法:
用vim,使用方式:
#vim file.txt
:set fileformat=dos
::wq
3.通过redis提供的管道--pipe形式跑脚本。命令:
cat redisTest.txt | redis-cli -h reids.aliyuncs.com -p 6379 -a xxxx --pipe