## 错误记录 ### redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. 1. 现象:在执行命令时Redis报错,如下: ```shell  redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. ``` 2. 原因:Redis集群问题,根本原因需要检查Redis log并确认 3. 解决方案:**该方法为临时解决方案** 对Redis进行如下设置: ```python  redis_cli.config_set("stop-writes-on-bgsave-error", "no") ```