Skip to content

Commit 9b1fc16

Browse files
DOC-4560 stash started transactions docs
1 parent 84e437e commit 9b1fc16

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

content/develop/clients/dotnet/transpipe.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,22 @@ title: Transactions and pipelines
1515
weight: 2
1616
---
1717

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+

0 commit comments

Comments
 (0)