springboot使用lettuce连接池

来源:
https://www.jb51.net/article/203065.htm



    org.springframework.boot
    spring-boot-starter-data-redis



    org.apache.commons
    commons-pool2
    2.6.2

#基本配置 默认使用db0
spring.redis.database=0
spring.redis.host=localhost
#spring.redis.password=
spring.redis.port=6379

#连接池配置
# 最大空闲连接
spring.redis.pool.max-idle=10
# 最小空闲连接
spring.redis.pool.min-idle=5  
# 最大连接数(负值表示没有限制)
spring.redis.pool.max-active=10 
# 最大阻塞等待时间(负值表示没有限制)
spring.redis.pool.max-wait=-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
#在关闭客户端连接之前等待任务处理完成的最长时间,在这之后,无论任务是否执行完成,都会被执行器关闭,默认100ms
spring.redis.lettuce.shutdown-timeout=100
#是否缓存空值
spring.cache.redis.cache-null-values=false

server.ip=192.168.102.186
spring.redis.host=${server.ip}
spring.redis.port=6379
spring.redis.timeout=20000
spring.redis.lettuce.pool.max-idle=10
spring.redis.lettuce.pool.min-idle=10
spring.redis.lettuce.pool.max-active=20
spring.redis.lettuce.pool.max-wait=10000
 

你可能感兴趣的:(springboot使用lettuce连接池)