Redis习惯使用 Json格式来存储了,spring-data-redis 2.0 开始网上找的方法已经都不适用了,文档里也没说清楚,通过分析源码最后解决。
这里简单介绍一下我的解决方法
1、pom依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
</dependency>
2、配置yml
spring:
cache:
redis:
use-key-prefix: true
time-to-live: 1d
redis:
port: 6379
host: ip
password: pwd
database: 0
timeout: 1s
lettuce:
pool:
max-active: 8
max-idl