剔除lettuce 解决轮播场景下的redis读写超时问题

pull/590/head
xingqiao 2022-08-26 11:53:11 +08:00
parent 3c025a5ac0
commit d66aab2e83
1 changed files with 14 additions and 0 deletions

14
pom.xml
View File

@ -60,6 +60,20 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<exclusions>
<exclusion>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</exclusion>
<exclusion>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>