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.
Use pyredis, refer to http://debugo.com/python-redis/
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*'))
Use pyredis, refer to http://debugo.com/python-redis/
It is recommended to use https://github.com/andymccurd... this module,
then: