Redis Unwatch 命令
Redis 教程
· 2019-03-08 09:58:32
Redis Unwatch 命令用于取消 WATCH 命令对所有 key 的监视。
语法
redis Unwatch 命令基本语法如下:
redis 127.0.0.1:6379> UNWATCH
可用版本
>= 2.2.0
返回值
总是返回 OK 。
实例
redis 127.0.0.1:6379> WATCH lock lock_times OK redis 127.0.0.1:6379> UNWATCH OK
点击查看所有 Redis 教程 文章: https://www.codercto.com/courses/l/33.html
Dive Into Python 3
Mark Pilgrim / Apress / 2009-11-6 / USD 44.99
Mark Pilgrim's Dive Into Python 3 is a hands-on guide to Python 3 (the latest version of the Python language) and its differences from Python 2. As in the original book, Dive Into Python, each chapter......一起来看看 《Dive Into Python 3》 这本书的介绍吧!