spring-boot-starter-parent 1.5.6.RELEASE redis集群配置
时间: 2023-12-15 22:06:14 浏览: 95
Redis集群配置
以下是spring-boot-starter-parent 1.5.6.RELEASE中redis集群配置的示例代码:
```xml
<!-- pom.xml -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
```
```yaml
# application.yml
spring:
redis:
cluster:
nodes:
- 127.0.0.1:7000
- 127.0.0.1:7001
- 127.0.0.1:7002
- 127.0.0.1:7003
- 127.0.0.1:7004
- 127.0.0.1:7005
```
需要注意的是,以上示例代码中的端口号和IP地址需要根据实际情况进行修改。
阅读全文