avatar

redis批量删除key
  • 背景

当 redis 中的数据过多时需要手动删除旧数据。shell 命令如下。

  • shell 命令
1
2
3
4
5
6
redis-cli -n 3 -h m8774.test.m.com -p 8774  -a "password" --scan --pattern '*'|xargs redis-cli -n 3 -h m8774.test.m.com -p 8774  -a "password" del

# 参数说明
# -n DB 指定数据库
# -h IP or host
# -a "password"
文章作者: luochenxi
文章链接: https://luochenxi.github.io/2020/08/17/yuque/redis%E6%89%B9%E9%87%8F%E5%88%A0%E9%99%A4key/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Kirio

评论