io.lettuce.core.RedisCommandTimeoutException: Command timed out
Java 操作 Redis 的库有两个,Jedis 和 Lettuce,目前 SpringBoot 2.x 中已经将 Jedis 换成了 Lettuce
原因:Lettuce的连接redis太久没有操作,被强制关闭连接。
可以在spring-boot-starter-data-redis 查看是引用哪个
解决办法
<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> </dependency>
来源:
boot-features-connecting-to-redis