redis大量发起链接时,会报出连接超时的错误,但是redis并没有宕机,这是因为配置文件用的jedis
如果是lettuce模式连接,可能不会报这个错;
修改如下,把lettuce这个包去掉后就不会报错了
<!-- 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>
个人学习或者工作过程中的一些简要记录,欢迎各位大神一起指导,共同学习