当前位置:   article > 正文

Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out after 1 minute(s)

io.lettuce.core.rediscommandtimeoutexception: command timed out after 1 minu

这个应该是lettuce客户端的bug,找了好久的问题,把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>
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/461699
推荐阅读
相关标签
  

闽ICP备14008679号