1. 程式人生 > 其它 >遠端連線redis一會又斷開重連

遠端連線redis一會又斷開重連

技術標籤:redis

1.問題

一會兒不操作控制檯就提示

[ioEventLoop-4-3] i.l.core.protocol.ReconnectionHandler    : Reconnected to *****:6379

造成重連響應很慢,體驗極差

2.使用的是lettuce 連線池,這個東西有bug,所以替換成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> </dependency>
spring.redis.jedis.pool.max-active=20
spring.redis.jedis.pool.max-wait=-1
#最大阻塞等待時間(負數表示沒限制)
spring.redis.jedis.pool.max-
idle=5 spring.redis.jedis.pool.min-idle=0

如上替換,我解決了重連問題