Redis常用总结.md 314 B

批量删除key

# 模糊删除
/home/redis/src/redis-cli -h 172.16.51.92 -p 6379 -a hisense@123 keys 'PRO:*' | xargs /home/redis/src/redis-cli -h 172.16.51.92 -p 6379 -a hisense@123 del

用到了 xargs 命令

查看redis版本

# 查看redis版本
/home/redis/src/redis-server -v