Im trying to set a Redis cluster (3 masters, 3 slaves) using JedisCluster. How should I set up the configuration files for the nodes of the cluster? Does JedisCluster methods are sufficient to set up the cluster?
Asked
Active
Viewed 110 times
1 Answers
1
JedisCluster
is to communicate with Redis cluster.
First, you have to set up Redis cluster on your own. There are several resources (tutorials, blogs, etc.) are available online. Google for those. To begin, you can take a look into Redis cluster tutorial.
After setting up, you can communicate with that Redis cluster by JedisCluster
(as well as many other ways).

sazzad
- 5,740
- 6
- 25
- 42