RDB
-
[redis] RDB 저장 실패시에도 write 명령 허용하기데이터베이스 2022. 8. 3. 18:00
Redis 기본설정상 RDB 저장이 비정상적으로 종료가 되면 모든 Write 명령은 동작하지 않습니다. 127.0.0.1:6379> set kim "1234" MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error. RDB 저장 실패시에도 Write를 허용하는 2가지 방법이 있습니다. 1. 명령어 127.0.0.1:6379> config set stop-writes-on-bgsave-error no OK ..