本文主要是介绍io.lettuce.core.RedisCommandTimeoutException: Command timed out 解决办法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
application.yml配置
redis:#数据库索引database: 0host: 127.0.0.1port: 6379password:#连接超时时间timeout: 5000jedis:pool:# 最大空闲连接max-idle: 8# 最小空闲链接min-idle: 0# 最大连接数(负数表示没有限制)max-active: 8# 最大阻塞等待时间(负数表示没有限制)max-wait: 0
pom.xml配置
<dependency><groupId>redis.clients</groupId><artifactId>jedis</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency><!--spring boot 集成redis所需common-pool2--><dependency><groupId>org.apache.commons</groupId><artifactId>commons-pool2</artifactId><version>${commons-pool2.version}</version></dependency><dependency><groupId>org.apache.commons</groupId><artifactId>commons-lang3</artifactId></dependency>```
这篇关于io.lettuce.core.RedisCommandTimeoutException: Command timed out 解决办法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!