redis客户端修改了key-value对之后有时会报MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist o...错误,不能持久化
解决方案,连接redis客户端
redis目录下:redis-cli -h 127.0.0.1 -p 6379
-h后为redis服务器ip,-p后为端口号
进入redis-client之后输入命令
config set stop-writes-on-bgsave-error no
问题解决