redis-tools provides redis-cli that can match * and delete keys in batches. Can I support this matching if I write it in python script? If so, how to write it? Thank you very much.
大家讲道理2017-05-27 17:41:53
It is recommended to use https://github.com/andymccurd... this module,
then:
>>> import redis
>>> r = redis.StrictRedis(host='localhost', port=6379, db=0)
>>> r.delete(*r.keys('*test*'))