redis-tools提供redis-cli 能夠匹配* 並批量刪除key, 請問如果我用python腳本寫是否也能支持這種匹配,如果支持的話, 怎麼寫? 感激不禁.
使用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... 這個模組,
然後: