redis批量模糊删除数据

在命令行输入

//批量删除key以order开头的数据
redis-cli keys order:* | xargs redis-cli del

redis批量模糊删除数据_第1张图片

你可能感兴趣的:(Redis,redis,缓存,数据库)