Berry
pika bin目錄下
方便Redis數(shù)據(jù)到Pika的遷移
Pika兼容Redis協(xié)議,所以任何使用于Redis的遷移工具同樣也適用于Pika,Redis-cli本身提供了一個pipe參數(shù)來完成Redis到Redis的數(shù)據(jù)遷移。該工具的實現(xiàn)方式為讀取待遷移Redis的aof文件并批量發(fā)送到目的Redis。Berry借鑒這種方式,并增加了如下改進:
Parameters:
-i: aof file
-h: the target host
-p: the target port
-a: the target auth
-v: show more information
Example: ./aof -i ./appendonly.aof -h 127.0.0.1 -p 6379 -a abc -v
更多建議: