Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.
解决办法:修改redis配置:
将redis.windows.conf文件中的stop-writes-on-bgsave-error yes
改为stop-writes-on-bgsave-error no
保存后重启项目: