Python 中 借用 pickle 操作redis数据

cache 为实例化 django 中的方法 get_redis_connection,感兴趣的可以尝试。

import pickle
import cache
key_id = ''
result = cache.get(key_id)
if result:
	result =  pickle.loads(result)
if not result:
	result = {''''''}
	cache.set(key_id, pickle.dumps(result))

你可能感兴趣的:(pickle,redis,python,django)