1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
spring:
redis:
database: 0
# host: 127.0.0.1 # 哨兵模式无效youxiao
port: 6379
password: root # 哨兵模式有效
# 连接超时时长(毫秒)
pingInterval: 100000
timeout: 100000
sentinel:
master: mymaster
# 哨兵节点列表
nodes: 192.168.1.1:6371,192.168.1.1:6372,192.168.1.1:6373
jedis:
pool:
# 连接池最大连接数(使用0表示没有限制)
max-active: 100
# 连接池最大阻塞等待时间(使用-1表示没有限制),超时报异常
max-wait: -1
# 连接池种的最大空闲连接(使用0表示没有限制)
max-idle: 10
# 连接池中的最小空闲连接(使用0表示没有限制)
min-idle: 5
Post
Cancel
Spring Boot配置Redis哨兵模式连接
This post is licensed under
CC BY 4.0
by the author.