在配置Redis集群连接时,需要确保Redis客户端能够正确地连接到集群中的各个节点。以下是一个典型的Redis集群连接配置示例:
RedisCluster cluster = new RedisCluster(new HostAndPort("127.0.0.1", 6379));
cluster-enabled yes
cluster-config-file nodes.conf
cluster-node-timeout 5000
cluster-announce-ip 127.0.0.1
cluster-announce-port 6379
Set<HostAndPort> clusterNodes = new HashSet<>();
clusterNodes.add(new HostAndPort("127.0.0.1", 6379));
clusterNodes.add(new HostAndPort("127.0.0.2", 6379));
RedisCluster cluster = new RedisCluster(clusterNodes);
通过以上配置,Redis客户端就能够正确地连接到Redis集群,并进行数据读写操作。需要注意的是,Redis集群是基于分片实现的,在进行数据操作时,需要根据数据的key来确定具体的节点。