使用ECS自己搭建Redis集群出现JedisCluster连接超时的问题
把下面这三行hostandports.add(new HostAndPort('公网Ip',7000));hostandports.add(new HostAndPort('公网Ip',7001));hostandports.add(new HostAndPort('公网Ip',7002));改成hostandports.add(new HostAndPort('slave节点ip', slave节点端口));就行了。具体你看JedisClusterConnectionHandler类的initializeSlotsCache方法。
赞1
踩0