Home  >  Q&A  >  body text

Python matches and deletes redis keys

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.

仅有的幸福仅有的幸福2677 days ago798

reply all(2)I'll reply

  • 给我你的怀抱

    给我你的怀抱2017-05-27 17:41:53

    Use pyredis, refer to http://debugo.com/python-redis/

    reply
    0
  • 大家讲道理

    大家讲道理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*'))

    reply
    0
  • Cancelreply