redis 管道
# 事务 --》四大特性
-原子性
-一致性
-隔离性
-持久性
#redis使用事务
import redis
con=redis.Redis()
p=con.pipeline(transacction=True)#使用事务
p.multi()开启事务
#任务
p.execute()
p.close()
标签:事务,redis,Redis,使用,close,con
From: https://www.cnblogs.com/liyuanxiangls/p/17498023.html