redis连接报错:io.lettuce.core.RedisCommandTimeoutException: Command timed out after 1 minute(s)

这篇博客介绍了在使用spring-boot-starter-data-redis时遇到的Lettuce bug,并提供了解决方案,即排除Lettuce依赖,转而引入并配置Jedis作为Redis连接库。通过修改pom.xml文件,将Lettuce排除并添加Jedis的依赖,可以实现Redis连接方式的替换。
摘要由CSDN通过智能技术生成

这是lettuce的bug
spring-boot-starter-data-redis引用的是lettuce做为redis的连接方式,所以我们需要用别的代替,比如jedis
在pom依赖中排除lettuce,再引入jedis

<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>
    <groupId>redis.clients</groupId>
    <artifactId>jedis</artifactId>
    <version>3.3.0</version>
</dependency>
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值