Redisson Redis 客户端是否支持自动拓扑发现?
Is there automatic topology discovery support in Redisson Redis client?
documentation 建议我们创建一个具有特定 Redis 配置(集群、复制、主从等)的 redisson 实例。
config.useClusterServers() // or
config.useReplicatedServers()
在我只有集群中一个节点的端点的情况下,Redisson 会发现集群的部署模式(复制、分片等),而无需用户使用特定配置进行实例化。如果是这样,那么从哪个可用配置开始是最理想的?
In situations where I only have the endpoint of one of the nodes in the cluster, will Redisson discover the deployment mode of the cluster (replicated, sharded etc) without the user having to instantiate with a specific configuration.
您应该为集群环境或类似云(AWS、Azure)的集群配置使用集群配置。在这种情况下,只需要指定一个端点节点。
仅用于单个主环境的复制配置and/or云(AWS、Azure)或任何其他部署中的多个从属环境
documentation 建议我们创建一个具有特定 Redis 配置(集群、复制、主从等)的 redisson 实例。
config.useClusterServers() // or
config.useReplicatedServers()
在我只有集群中一个节点的端点的情况下,Redisson 会发现集群的部署模式(复制、分片等),而无需用户使用特定配置进行实例化。如果是这样,那么从哪个可用配置开始是最理想的?
In situations where I only have the endpoint of one of the nodes in the cluster, will Redisson discover the deployment mode of the cluster (replicated, sharded etc) without the user having to instantiate with a specific configuration.
您应该为集群环境或类似云(AWS、Azure)的集群配置使用集群配置。在这种情况下,只需要指定一个端点节点。
仅用于单个主环境的复制配置and/or云(AWS、Azure)或任何其他部署中的多个从属环境