Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion source/write/transactions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ operations. For example, if you perform a series of operations where
one operation logically depends on the result of another, any subsequent
reads reflect the dependent relationship.

.. note::

A client session guarantees causal consistency even if it is not used within a
transaction.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'm not sure exactly what this means; maybe add some explanation?


The following table describes the guarantees that causally
consistent sessions provide:

Expand Down Expand Up @@ -90,7 +95,7 @@ consistent sessions provide:
``delete_one()`` to delete the retrieved document, the driver runs the find
operation first.

In a causally consistent session, MongoDB ensures a causal relationship between the
In a causally consistent session, MongoDB only guarantees causal consistency between the
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
In a causally consistent session, MongoDB only guarantees causal consistency between the
In a causally consistent session, MongoDB guarantees causal consistency between only the

following operations:

- Read operations that have a ``majority`` read concern
Expand Down
Loading