1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# Redis `transactions` commands (5/5 implemented)
## [DISCARD](https://redis.io/commands/discard/)
Discards a transaction.
## [EXEC](https://redis.io/commands/exec/)
Executes all commands in a transaction.
## [MULTI](https://redis.io/commands/multi/)
Starts a transaction.
## [UNWATCH](https://redis.io/commands/unwatch/)
Forgets about watched keys of a transaction.
## [WATCH](https://redis.io/commands/watch/)
Monitors changes to keys to determine the execution of a transaction.
|