Skip to content

Commit 96557bd

Browse files
restructured connection section (#329)
* restructured connection section
1 parent 902f61e commit 96557bd

File tree

8 files changed

+351
-347
lines changed

8 files changed

+351
-347
lines changed

snooty.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ intersphinx = [
99
toc_landing_pages = [
1010
"/fundamentals/authentication",
1111
"/fundamentals",
12+
"/fundamentals/connection",
1213
"/fundamentals/crud",
1314
"/usage-examples",
1415
]

source/faq.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ What Is the Difference Between "connectTimeoutMS", "socketTimeoutMS" and "maxTim
2323
* - Setting
2424
- Description
2525
* - connectTimeoutMS
26-
- ``connectTimeoutMS`` is a :ref:`connection option <connection-options>` that sets the time, in milliseconds,
26+
- ``connectTimeoutMS`` is a :ref:`connection option <node-connection-options>` that sets the time, in milliseconds,
2727
for an individual connection from your connection pool to establish a TCP connection to the MongoDB server before
2828
timing out.
2929

@@ -65,7 +65,7 @@ How Can I Prevent the Driver From Hanging During Connection or From Spending Too
6565
To prevent the driver from hanging during connection or to prevent the
6666
driver from spending too long trying to reach unreachable replica sets,
6767
you can set the ``connectTimeoutMS`` option of your
68-
:ref:`connection options <connection-options>`.
68+
:ref:`connection options <node-connection-options>`.
6969
Generally, you should ensure that the
7070
``connectTimeoutMS`` setting is not lower than the longest network
7171
latency you have to a member of the set. If one of the secondary members
@@ -220,7 +220,7 @@ How Can I Prevent a Slow Operation From Delaying Other Operations?
220220

221221
A slow operation may delay your other operations that occur after it, if
222222
the ``poolSize`` has not been set in the
223-
:ref:`connection options <connection-options>`.
223+
:ref:`connection options <node-connection-options>`.
224224
MongoDB is synchronous and uses a single execution thread per socket,
225225
meaning that MongoDB will execute one single operation per socket at any
226226
point in time. Any other operation sent to that socket will have to wait

source/fundamentals/authentication/enterprise-mechanisms.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _node-enterprise-authentication-mechanisms:
2+
13
====================================
24
Enterprise Authentication Mechanisms
35
====================================

source/fundamentals/authentication/mechanisms.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _node-authentication-mechanisms:
2+
13
=========================
24
Authentication Mechanisms
35
=========================

0 commit comments

Comments
 (0)