最近一直在玩 Redis,想知道如何完成一次看多个键。像下面这样的东西是原子的吗?
以下代码使用redis-py;
while True:
try:
pipe.watch(key)
pipe.watch(another_key)
pipe.multi()
pipe.set(key, value)
pipe.set(another_key, another_value)
pipe.execute()
break
except redis.WatchError:
continue
finally:
pipe.reset()