41 Star 135 Fork 47

leonchen83 / redis-replicator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
HugeKVFileExample.java 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
chenby@nextop.cn 提交于 2018-06-29 18:36 . 3.x init
/*
* Copyright 2016-2018 Leon Chen
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.moilioncircle.examples.huge;
import com.moilioncircle.redis.replicator.RedisReplicator;
import com.moilioncircle.redis.replicator.Replicator;
import com.moilioncircle.redis.replicator.event.Event;
import com.moilioncircle.redis.replicator.event.EventListener;
import com.moilioncircle.redis.replicator.rdb.iterable.ValueIterableEventListener;
import com.moilioncircle.redis.replicator.rdb.iterable.ValueIterableRdbVisitor;
import com.moilioncircle.redis.replicator.rdb.iterable.datatype.BatchedKeyValuePair;
/**
* @author Leon Chen
* @since 2.4.4
*/
public class HugeKVFileExample {
public static void main(String[] args) throws Exception {
Replicator r = new RedisReplicator("redis:///path/to/dump.rdb");
r.setRdbVisitor(new ValueIterableRdbVisitor(r));
r.addEventListener(new ValueIterableEventListener(new EventListener() {
@Override
public void onEvent(Replicator replicator, Event event) {
if (event instanceof BatchedKeyValuePair<?, ?>) {
// do something
}
}
}));
r.open();
}
}
Java
1
https://gitee.com/leonchen83/redis-replicator.git
git@gitee.com:leonchen83/redis-replicator.git
leonchen83
redis-replicator
redis-replicator
master

搜索帮助