There was an error running Redis today while adding the Redis cache using composer:
127.0.0.1:6379> Set Dachou Dadachou (Error) misconf Redis is configured to save RDB snapshots, but was currently not able To persist on disk. Commands that may modify the data set is disabled. Please check your Redis logs for details about the error.
This error means that Redis is configured to save the database snapshot, but it cannot be persisted to the hard disk at this time. The command used to modify collection data is not available. Please review the detailed error information for the Redis log.
Reason:
Forcing a Redis snapshot to close causes it to not persist.
Solution:
127.0.0.1:6379> Config set stop-writes-on-bgsave-error nook127.0.0.1:6379> set Choupi Sssok
After you run the config set stop-writes-on-bgsave-error no command, close the configuration item Stop-writes-on-bgsave-error resolve the issue.
redis resolves forced shutdown of redis snapshots resulting in no persistence errors