File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
content/develop/clients/dotnet Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,22 @@ title: Transactions and pipelines
15
15
weight : 2
16
16
---
17
17
18
- Redis lets you create a
18
+ Redis lets you send a sequence of commands to the server together in a batch.
19
+ There are two types of batch that you can use:
20
+
21
+ - * Transactions* guarantee that all the included commands will execute
22
+ to completion without being interrupted by commands from other clients.
23
+ See the [ Transactions] ({{< relref "/develop/interact/transactions" >}})
24
+ page for more information.
25
+ - * Pipelines* avoid network and processing overhead by sending several commands
26
+ to the server together in a single communication. The server then sends back
27
+ a single communication with all the responses. This typically improves
28
+ performance compared to sending the commands separately. See the
29
+ [ Pipelining] ({{< relref "/develop/use/pipelining" >}}) page for more
30
+ information.
31
+
32
+ ## Transactions
33
+
34
+
35
+
36
+
You can’t perform that action at this time.
0 commit comments