redis批量删除命令

./redis-cli -h 127.0.0.1 -p 6379 -n 2 KEYS "170*:redisKeyStr" | xargs ./redis-cli  -h 127.0.0.1 -p 6379 -n 2 DEL

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