集群配置
#各Redis节点信息 spring.redis.cluster.nodes=47.96.*.*:6370,47.96.*.*:6371,47.96.*.*:6372,116.62.*.*:6373,116.62.*.*:6374,116.62.*.*:6375 spring.redis.cluster.password=****** #执行命令超时时间 spring.redis.cluster.command-timeout= 10000 #重试次数 spring.redis.cluster.max-attempts=2 #跨集群执行命令时要遵循的最大重定向数量 spring.redis.cluster.max-redirects=3 #连接池最大连接数(使用负值表示没有限制) spring.redis.cluster.max-active=16 #连接池最大阻塞等待时间(使用负值表示没有限制) spring.redis.cluster.max-wait=-1 #连接池中的最大空闲连接 spring.redis.cluster.max-idle=8 #连接池中的最小空闲连接 spring.redis.cluster.min-idle=0 #是否在从池中取出连接前进行检验,如果检验失败,则从池中去除连接并尝试取出另一个 spring.redis.cluster.test-on-borrow=true