File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,9 @@ before they ever become visible.
2929
3030In MongoDB, transactions run within logical **sessions**. A
3131session 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
3436When 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.
5153Causal 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.
5657The causal consistency model guarantees that operations within a session
5758run in a causal order. Additionally, clients observe results that
5859are consistent with the causal relationships, or the dependencies between
You can’t perform that action at this time.
0 commit comments