#redis数据库默认使用db0
spring.redis.database=2
spring.redis.password=
spring.redis.port=6379
spring.redis.host=127.0.0.1
#连接超时时间
spring.redis.timeout=5000
#连接池最大连接数(使用负值表示没有限制)
spring.redis.lettuce.pool.max-active=3
#连接池中的最小空闲连接
spring.redis.lettuce.pool.min-idle=2
#连接池中的最大空闲连接
spring.redis.lettuce.pool.max-idle=3
#连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.lettuce.pool.max-wait=-1
#lettuce连接池属性timeBetweenEvictionRunsMillis如果不设置 默认是 -1,当该属性值为负值时,lettuce连接池要维护的最小空闲连接数的目标minIdle就不会生效
spring.redis.lettuce.pool.time-between-eviction-runs=2
#在关闭客户端连接之前等待任务处理完成的最长时间,在这之后,无论任务是否执行完成,都会被执行器关闭,默认100ms
spring.redis.lettuce.shutdown-timeout=100
#是否缓存空值
spring.cache.redis.cache-null-values=false
spring-boot下redis连接池配置模板
最新推荐文章于 2024-04-30 16:05:51 发布