redis异常-MISCONF Redis is configured to save RDB snapshots
在eclipse中用java代码通过jedis操作redis的时候,报这个错:
redis.clients.jedis.exceptions.JedisDataException: MISCONF Redis is configured to save RDB snapshots
其中的一种解决方式:
其中的一种解决方式:
在redis-cli连接到服务器后执行以下命令:
config set stop-writes-on-bgsave-error no
就可以了