Redis
引入依赖
org.springframework.boot spring-boot-starter-data-redisorg.apache.commons commons-pool2io.lettuce lettuce-core
2-5-1 配置Redis连接池
spring:
redis:
txx:
database: 0
host: XXXXXX
lettuce:
pool:
max-active: -1
max-idle: 20
max-wait: -1
min-idle: 10
password: xxxxxx
port: 50022
timeout: 10000
2-5-2 Redis架构扩展
现阶段我们采用的是单机架构,没



