SpringBoot集成Redis集群
Posted work hard work smart
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot集成Redis集群相关的知识,希望对你有一定的参考价值。
只需要修改为如下集群模式的配置
spring: redis: #Redis 集群模式 #password: larry123456 cluster: nodes: 192.168.127.128:6379,192.168.127.129:6379,192.168.127.130:6379,192.168.127.131:6379,192.168.127.132:6379,192.168.127.133:6379 #Redis 哨兵模式 #password: larry123456 #sentinel: # master: larry-master # nodes: 192.168.127.130:26379,192.168.127.128:26379,192.168.127.129:26379 #Redis 单机模式 # host: 192.168.127.128 # port: 6379 # password: larry123456
这里的集群架构为redis 3主3从
以上是关于SpringBoot集成Redis集群的主要内容,如果未能解决你的问题,请参考以下文章
Springboot学习SpringBoot集成Shiro前后端分离使用redis做缓存个人博客搭建
SpringBoot 使用 RedisTemplate Cluster集群的正确姿势(万字图文)