您的位置:首页 > 数据库 > Redis

Redis 命令 - Transactions

2015-09-25 14:50 525 查看
DISCARD

Discard all commands issued after MULTI

More: http://redis.io/commands/discard, http://www.redis.cn/commands/discard.html

EXEC

Execute all commands issued after MULTI

More: http://redis.io/commands/exec, http://www.redis.cn/commands/exec.html

MULTI

Mark the start of a transaction block

More: http://redis.io/commands/multi, http://www.redis.cn/commands/multi.html

UNWATCH

Forget about all watched keys

More: http://redis.io/commands/unwatch, http://www.redis.cn/commands/unwatch.html

WATCH key [key ...]

Watch the given keys to determine execution of the MULTI/EXEC block

More: http://redis.io/commands/watch, http://www.redis.cn/commands/watch.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: