-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathMongo.setCausalConsistency.txt
73 lines (45 loc) · 1.68 KB
/
Mongo.setCausalConsistency.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
============================
Mongo.setCausalConsistency()
============================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
.. method:: Mongo.setCausalConsistency(<boolean>)
Enables or disables :ref:`causal consistency <causal-consistency>`
on the connection object. Causal consistency is disabled on the
connection object by default.
.. note::
The :method:`Mongo` connection object may have causal consistency
disabled even though sessions may have causal consistency enabled
or vice versa. See :method:`Mongo.startSession()`.
To enable causal consistency for the connection object, call the
method without any argument:
.. code-block:: javascript
var conn = Mongo("localhost:27017");
conn.setCausalConsistency();
The method also can accept a boolean argument:
- ``true`` to enable causal consistency:
.. code-block:: javascript
conn.setCausalConsistency(true);
- ``false`` to disable causal consistency:
.. code-block:: javascript
conn.setCausalConsistency(false);
Compatibility
-------------
This method is available in deployments hosted in the following environments:
.. include:: /includes/fact-environments-atlas-only.rst
.. include:: /includes/fact-environments-onprem-only.rst
Example
-------
The following :binary:`~bin.mongosh` operation enables causal
consistency on the :method:`Mongo` connection object associated with
:binary:`~bin.mongosh`'s global ``db`` variable:
.. code-block:: javascript
db.getMongo().setCausalConsistency();
.. seealso::
- :method:`db.getMongo()`