SpringBoot 整合Redis

2021-03-03 10:50:20 浏览数 (1)

1. 官方介绍


  • 官方地址
  • 集群文档

2. 整合过程


1. 添加依赖
代码语言:javascript复制
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
2. 配置相关配置文件
代码语言:javascript复制
# ========== redis基础配置 ============
spring.redis.database=0
spring.redis.host=127.0.0.1
spring.redis.password=password
spring.redis.port=6379
## 连接超时时间 丹喂 ms(毫秒)
spring.redis.timeout=3000

# ========== redis线程池设置 ============
# 连接池中的最大空闲连接,默认值是8
spring.redis.pool.max-idle=200
# 连接池中最小的空闲连接,默认值是0
spring.redis.pool.min-idle=200
# 如果赋值为-1,则表示不限制;pool已经分配了maxActive个jedis实例,则此时pool的状态为exhausted(耗尽)
spring.redis.pool.max-active=2000
# 等待可用连接的最大时间,单位毫秒,默认值为-1.表示永不超时
spring.redis.pool.max-wait=1000
3. 简单使用Redis

0 人点赞