# 使用数据库的索引编号,一个示例有16个数据库 0 到 15
spring.redis.database=0
# 连接URL,如: redis://user:password@example.com:6379
spring.redis.url=
# redis所在主机
spring.redis.host=localhost
# Redis服务器的密码
spring.redis.password=
# Redis服务器端口
spring.redis.port=6379
# 连接池的最大活动连接数量,使用负值无限制
spring.redis.pool.max-active=8
# 连接池的最大空闲连接数量,使用负值表示无限数量的空闲连接
spring.redis.pool.max-idle=8
# 连接池最大阻塞等待时间,使用负值表示没有限制
spring.redis.pool.max-wait=-1ms
# 最小空闲连接数量,使用正值才有效果
spring.redis.pool.min-idle=0
# 是否启用SSL连接.
spring.redis.ssl=false
# 连接超时,毫秒为单位
spring.redis.timeout=
# 集群模式下,集群最大转发的数量
spring.redis.cluster.max-redirects=
# 集群模式下,逗号分隔的键值对(主机:端口)形式的服务器列表
spring.redis.cluster.nodes=
# 哨兵模式下,Redis主服务器地址
spring.redis.sentinel.master=
# 哨兵模式下,逗号分隔的键值对(主机:端口)形式的服务器列表
spring.redis.sentinel.nodes= 127.0.0.1:5050,127.0.0.1:5060