Python matches and deletes redis keys
仅有的幸福
仅有的幸福 2017-05-27 17:39:53
0
2
797

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.

仅有的幸福
仅有的幸福

reply all(2)
给我你的怀抱

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*'))
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!