SpringBoot配置redis和redis集群
【摘要】
SpringBoot集成redis和redis集群
pom
<!-- redis -->
<!-- <dependency>-->
...
SpringBoot集成redis和redis集群
pom
<!-- redis -->
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<exclusions>
<exclusion>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
<!-- =======end======-->
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
application.properties
单机配置
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=123456
#连接池的最大连接数,使用负数没有限制
spring.redis.jedis.pool.max-active=100
#连接池的最大空闲连接
spring.redis.jedis.pool.max-idle=10
#连接池的最大阻塞等待时间
spring.redis.jedis.pool.max-wait=100000
# 连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=10000
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
集群配置
#集群配置
spring.redis.cluster.nodes=127.0.0.1:6379,127.0.0.1:6380,127.0.0.1:6381,127.0.0.1:6382,127.0.0.1:6383,127.0.0.1:6384
## 连接超时时间(毫秒)
spring.redis.timeout=60000
## Redis数据库索引(默认为0)
spring.redis.database=0
#连接池的最大连接数,使用负数没有限制
spring.redis.jedis.pool.max-active=100
#连接池的最大空闲连接
spring.redis.jedis.pool.max-idle=10
#连接池的最大阻塞等待时间
spring.redis.jedis.pool.max-wait=100000
# 连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=10000
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
文章来源: blog.csdn.net,作者:小毕超,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_43692950/article/details/107443659
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)