以下是使用redis-py的示例代码。我看着钥匙。然后睡30秒。同时,我使用命令行手动更新密钥。我期望在唤醒后代码尝试设置键时出现WatchError。但是我没有得到WatchError。你能让我知道怎么了吗?
import redis
import time
r = redis.Redis( host= os.environ['REDIS_HOST'],
port= os.environ['REDIS_PORT'],
password=os.environ['REDIS_PWD'],
ssl='True',
charset="utf-8",
decode_responses=True)
pipe = r.pipeline()
event_id = "xyz"
try:
pipe.watch(event_id)
time.sleep(30)
pipe.multi()
r.set(event_id,"abc")
pipe.execute()
except redis.exceptions.WatchError as e:
print(e)