在 spring-data-redis 中定义集群节点 属性 的替代方法

Alternative way to define cluster nodes property in spring-data-redis

我试图在我的项目中使用 spring-data-redis。当我在 yaml 文件中配置 redis 节点时,如:

spring:
  redis:
    cluster:
      max-redirects: 2
      nodes: host1:6379,host1:6380,host1:6381

然后,spring-data-redis 在内部为集群创建 JedisConnectionFactory。但是如果我尝试通过以下方式配置:

spring:
  redis:
    cluster:
      max-redirects: 2
      nodes: 
        - host1:6379
        - host1:6380
        - host1:6381

然后,我必须在我的应用程序中为集群创建 JedisConnectionFactory 的 bean。

我猜当前版本的 spring-data-redis 不支持在 yaml 中以数组方式表示节点数来创建集群。

我的建议是spring-boot/spring-data-redis开发者可以支持以上格式的yaml在内部创建redis集群吗?

如果您选中 here,可以将 hostAndPort 提供为像这样的丑陋数组,与 spring.redis 属性组分开;

clusterHostAndPorts:
  - host1:6379
  - host1:6380
  - host1:6381

在我本地测试过,确实可以,不支持你问的方式,可以看看here, then here, and then finally here

HostAndPort need to be seperated by ':'.

Host and Port String needs to specified as host:port