Redisson,最出名的莫过于扩展了Redis应有的功能,提供了简而易用的分布式锁。
更多详细介绍不作赘述。详见官网:Redisson: Easy Redis Java client with features of In-Memory Data Grid
1.引入Redisson依赖
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>3.27.2</version>
</dependency>
2.配置文件
spring:
redis:
password: your password
timeout: 60s
connect-timeout: 30s
database: 0
sentinel:
master: mymaster
nodes: 127.0.0.1:6379,127.0.0.1:6380,127.0.0.1:6381
password: your password
lettuce:
pool:
max-active: 10
max-idle: 3
max-wait: -1
min-idle: 1
3.配置Java Config
import org.redis