Spring引导的Redis群集配置

时间:2016-12-26 15:33:38

标签: java spring-boot redis

我要为我的spring启动应用程序添加一个redis集群。我发现下面的属性需要放在application.property文件下才能实现它。

check_snmp

什么是 max-redirects 以及我应该放置什么值?

redis池如何与redis群集一起运行? redis集群与单个redis节点相比,是否有不同的redis池值?

spring.redis.cluster.max-redirects= # Maximum number of redirects to follow when executing commands across the cluster.
spring.redis.cluster.nodes= # Comma-separated list of "host:port" pairs to bootstrap from.

1 个答案:

答案 0 :(得分:1)

您可以max-redirects取消配置websockets

使用Jedis的Redis群集支持考虑来自spring.redis.pool.…的池设置,没有单独的配置。这些设置允许您配置池一次并使用具有不同操作模式的池(Standalone,Sentinel,Cluster)。