Jedis 是否需要知道所有集群 IP 才能运行,或者它是否可以只使用一个并让它自动找出其他 IP?

Does Jedis need to know all the cluster IPs to function or can it work with just one and let it figure out the others automatically?

我正在尝试使用相同的代码库连接到单节点 Redis 和 Elasticache 集群。我不是通过 Spring 使用 Jedis raw,因为这是一个遗留应用程序,我正在设置 Tomcat 以将 Jedis 用作会话存储。

Jedis 是否需要知道所有集群 IP 才能运行,还是它可以只使用一个并让它自动找出其他 IP?

它可以只使用一个活动节点,然后在内部找出其他节点。