亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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

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