springcache整合redis集群 ymal文件配置
时间: 2023-05-20 17:04:57 浏览: 172
Spring集成Redis集群的配置文件
可以参考以下配置:
```yaml
spring:
cache:
type: redis
redis:
cluster:
nodes:
- host: 127.0.0.1
port: 6379
- host: 127.0.0.1
port: 6380
- host: 127.0.0.1
port: 6381
timeout: 3000
maxAttempts: 5
password: yourpassword
```
其中,`host` 和 `port` 分别表示 Redis 集群中的节点地址和端口号,`timeout` 表示连接超时时间,`maxAttempts` 表示最大重试次数,`password` 表示 Redis 集群的密码。
阅读全文