日期:2014-05-16 浏览次数:20637 次
删除key
./redis-cli -a password -n 0 keys "/test/*" | xargs ./redis-cli -a password -n 0 del
-a auth + password 表示用户验证
del 表示删除
之后会出现如下错误
(error) 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.
使用如下命令解决:
config set stop-writes-on-bgsave-error no