File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -71,23 +71,23 @@ deployment:
7171Multiple Deployments
7272--------------------
7373
74- You can connect to multiple MongoDB deployments by specifying a list of hosts
74+ You can connect to multiple MongoDB deployments by specifying a list of MongoDB instances
7575in your connection string.
7676
77- The following code shows how to use {+driver-short+} to connect to three hosts :
77+ The following code shows how to use {+driver-short+} to connect to three instances :
7878
7979.. code-block:: python
8080
8181 from pymongo import MongoClient
8282
8383 client = MongoClient("mongodb://host1:27017,host2:27017,host3:27017")
8484
85- {+driver-short+} evenly load balances operations across the specified ``mongos`` instances
86- within the specified ``localThresholdMS`` of the lowest-latency ``mongos`` instance. The
85+ {+driver-short+} evenly load balances operations across the specified instances
86+ within the specified ``localThresholdMS`` of the lowest-latency instance. The
8787``localThresholdMS`` option defaults to ``15``.
8888
8989To learn more about how {+driver-short+} load balances operations across multiple
90- ``mongos`` instances, see the :ref:`pymongo-server-selection` guide.
90+ MongoDB instances, see the :ref:`pymongo-server-selection` guide.
9191
9292Replica Sets
9393------------
You can’t perform that action at this time.
0 commit comments