clusterConfig.setLocalMember("tcp://localhost:8080");
clusterConfig.setRemoteMembers("tcp://localhost:8081", "tcp://localhost:8082");
Copycat.builder()
.withStateMachine(new KeyValueStore())
.withLog(new InMemoryLog())
.withCluster(new Cluster(clusterConfig))
.build()
.start();
}