Skip to content

Commit c1b9daf

Browse files
committed
examples
1 parent 9fec3dd commit c1b9daf

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

dbx/causal-consistency.rst

+8
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,18 @@ consistent sessions provide:
4545
- If a write operation must precede other write operations, the server
4646
runs this write operation first.
4747

48+
For example, if you call |insert-one-method| to insert a document, then call
49+
|update-one-method| to modify the inserted document, the server runs the
50+
insert operation first.
51+
4852
* - Writes follow reads
4953
- If a write operation must follow other read operations, the server runs
5054
the read operations first.
5155

56+
For example, if you call |find-one-method| to retrieve a document, then call
57+
|delete-one-method| to delete the retrieved document, the server runs the find
58+
operation first.
59+
5260
.. tip::
5361

5462
To learn more about the concepts mentioned in this section, see the

0 commit comments

Comments
 (0)