Commit 679d41d4 authored by 张彦钊's avatar 张彦钊

change test file

parent 0d137e34
......@@ -82,13 +82,13 @@ def tractate_write(device_id,cid):
r = redis.Redis(host="172.16.40.135", port=5379, password="")
key = str(device_id) + "_dislike_tractate"
if r.exists(key):
value = json.loads(r.hgetall(key)[b"queue"])
value = json.loads(r.get(key)).split(",")
value.extend(cids)
cids = json.dumps(list(set(value)))
r.set(key, json.dumps(cids))
cids = json.dumps(",".join(set(value)))
r.set(key, cids)
print("存在")
else:
r.hset(key,"queue",json.dumps(cids))
r.set(key,json.dumps(",".join(cids)))
r.expire(key, 7*24*60*60)
# return "tractate good"
#
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment