Skip to content

Commit 213fdb1

Browse files
committed
table
1 parent ca1e821 commit 213fdb1

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

source/crud/transactions.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,31 @@ operations. If you perform a series of operations where one operation
6161
logically depends on the result of another, any subsequent
6262
reads reflect the dependent relationship.
6363

64+
The following tables describes the guarantees that causally
65+
consistent sessions provide:
66+
67+
.. list-table::
68+
:widths: 40 60
69+
:header-rows: 1
70+
71+
* - Guarantee
72+
- Description
73+
74+
* - Read your writes
75+
- Read operations reflect the results of preceding write operations.
76+
77+
* - Monotonic reads
78+
- Read operations do not return results that reflect an earlier data state than
79+
a preceding read operation.
80+
81+
* - Monotonic writes
82+
- The driver runs write operations that logically must precede other write operations
83+
before these dependent writes.
84+
85+
* - Writes follow reads
86+
- The driver runs write operations that logically must follow other read operations
87+
after these reads.
88+
6489
In a causally consistent session, MongoDB ensures a
6590
causal relationship between the following operations:
6691

0 commit comments

Comments
 (0)