perf(core模块): 不使用lettuce,使用jedis,原来就引入了jedis,但是没有把lettuce排除

This commit is contained in:
曹鹏飞 2024-12-31 11:12:30 +08:00
parent 41303ff3b8
commit 83d886d1e1
1 changed files with 6 additions and 0 deletions

View File

@ -62,6 +62,12 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<exclusions>
<exclusion>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>