首页 > TAG信息列表 > indexValue1

python简单操作redis

redis操作 import redis r = redis.StrictRedis(host='localhost', port=6379, db=0) r.set('test1', 'test1') value1 = r.get('car') print(value1) all_keys = r.keys() print(all_keys) for indexKey in all_keys: indexV