Files
obsidian_sycn/知识管理/编程经验/错误经验整理/Redis.md
T
2026-07-31 15:28:08 +08:00

610 B

错误记录

redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk.

  1. 现象:在执行命令时Redis报错,如下:
 redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk.
  1. 原因:Redis集群问题,根本原因需要检查Redis log并确认

  2. 解决方案:该方法为临时解决方案

对Redis进行如下设置:

 redis_cli.config_set("stop-writes-on-bgsave-error", "no")