Redis
Jabony
只要还有明天,今天就永远是起跑点
展开
-
【Redis】MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on di
MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk.转自:https://www.cnblogs.com/anny-1980/p/4582674.html今天运行Redis时发生错误,错误信息如下:(error) MISCONF Redis is ...转载 2019-04-15 14:35:27 · 593 阅读 · 0 评论 -
【SpringBoot】springboot中各个版本的redis配置问题
今天在springboot中使用数据库,springboot版本为2.0.2.RELEASE,通过pom引入jar包,配置文件application.properties中的redis配置文件报错,提示例如deprecated configuration property 'spring.redis.pool.max-active',猜想应该是版本不对,发现springboot在1.4前后集成re...转载 2019-05-13 15:47:38 · 1557 阅读 · 0 评论 -
【SpringBoot&Redis】io.lettuce.core.RedisCommandTimeoutException: Command timed out
错误原因:连接超时时间设置的过于短暂(我这边设置成了0),修改为5000左右即可# REDIS (RedisProperties)# Redis数据库索引(默认为0)spring.redis.database=0# Redis服务器地址spring.redis.host=192.168.30.103# Redis服务器连接端口spring.redis.port=6379# Redi...转载 2019-05-13 15:49:31 · 2848 阅读 · 0 评论