An embedded Redis cluster for Java integration test.
Only the following platforms are supported.
- macOS arm64
- macOS x86_64
- Ubuntu arm64
- Ubuntu x86_64
- Debian x86_64
- RedHat x86_64
- CentOS x86_64
Add this library to Maven pom.xml
<dependency>
<groupId>io.github.shiyouping</groupId>
<artifactId>embedded-redis-cluster</artifactId>
<version>0.0.4</version>
<scope>test</scope>
</dependency>
By default, three master nodes will be created, and the ports of master nodes are 16379, 16380 and 16381.
Config config = new ConfigBuilder().build();
RedisCluster redisCluster=new RedisCluster(config);
redisCluster.start();
redisCluster.stop();
You may change the default settings by Java code:
// The ports of master nodes are 12000, 12001, 12002 and 12003
Config config = new ConfigBuilder().masterNodes(4).port(12000).clusterNodeTimeout(5000).build();
RedisCluster redisCluster = new RedisCluster(config);
or in environment variables:
REDIS_PORT=12000
REDIS_MASTER_NODES=4
REDIS_CLUSTER_NODE_TIMEOUT=5000