io.lettuce.core.RedisCommandTimeoutException: Command timed out 解决办法

application.yml配置

redis:
    #数据库索引
    database: 0
    host: 127.0.0.1
    port: 6379
    password:
    #连接超时时间
    timeout: 5000
    jedis:
          pool:
            # 最大空闲连接
            max-idle: 8
            # 最小空闲链接
            min-idle: 0
            # 最大连接数(负数表示没有限制)
            max-active: 8
            # 最大阻塞等待时间(负数表示没有限制)
            max-wait: 0

pom.xml配置


       redis.clients
       jedis
   

       
           org.springframework.boot
           spring-boot-starter-data-redis
       

       
       
           org.apache.commons
           commons-pool2
           ${commons-pool2.version}
       
       
           org.apache.commons
           commons-lang3
       
       ```

你可能感兴趣的:(maven)