Hello,
Let's say I have a redis cluster with 3 masters and 3 slaves, and have the following URIs:
- redis://master-1:some-port
- redis://master-2:some-port
- redis://master-3:some-port
- redis://slave-1:some-port
- redis://slave-2:some-port
- redis://slave-3:some-port
When I build RedisClusterClient, am I supposed to pass all 6 URIs into RedisClusterClient.create(Iterable<RedisURI> redisURIs), or to pass 3 master URIs or any one of 6 URIs?
Or, am I supposed to have a virtual IP and put all masters/slaves behind the virtual IP?
Thank you in advance!
Kevin