redis-tools bietet Redis-Cli, das Schlüssel in Stapeln abgleichen und löschen kann. Wenn ja, wie schreibe ich es?
使用pyredis, 参考http://debugo.com/python-redis/
推荐使用 https://github.com/andymccurd... 这个模块,然后:
>>> import redis >>> r = redis.StrictRedis(host='localhost', port=6379, db=0) >>> r.delete(*r.keys('*test*'))
使用pyredis, 参考http://debugo.com/python-redis/
推荐使用 https://github.com/andymccurd... 这个模块,
然后: