File: TRANSACTIONS.md

package info (click to toggle)
python-fakeredis 2.29.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,772 kB
  • sloc: python: 19,002; sh: 8; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 495 bytes parent folder | download
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.