Skip to content

Commit ca1e821

Browse files
committed
wording
1 parent 3b5d5ce commit ca1e821

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

source/crud/transactions.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ before they ever become visible.
2929

3030
In MongoDB, transactions run within logical **sessions**. A
3131
session is a grouping of related read or write operations that you
32-
intend to run sequentially.
32+
intend to run sequentially. Sessions allow you to run operations
33+
in an ACID-compliant transaction, which is a transaction that meets
34+
an expectation of atomicity, consistency, isolation, and durability.
3335

3436
When using the {+driver-short+}, you can create a new session from a
3537
``MongoClient`` instance as a ``ClientSession`` type. We recommend that you reuse
@@ -51,8 +53,7 @@ instantiating a new client each time.
5153
Causal Consistency
5254
~~~~~~~~~~~~~~~~~~
5355

54-
MongoDB enables **causal consistency** in client sessions, which allows
55-
you to execute operations in an :website:`ACID transaction </basics/acid-transactions>`.
56+
MongoDB enables **causal consistency** in client sessions.
5657
The causal consistency model guarantees that operations within a session
5758
run in a causal order. Additionally, clients observe results that
5859
are consistent with the causal relationships, or the dependencies between

0 commit comments

Comments
 (0)