Skip to content

Commit b284011

Browse files
committed
remove unnecessary links to server options
1 parent 2e62d52 commit b284011

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

source/connection/connection-pools.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -75,59 +75,59 @@ see the corresponding syntax:
7575
* - Setting
7676
- Description
7777

78-
* - :urioption:`connectTimeoutMS`
78+
* - ``connectTimeoutMS``
7979

8080
- Specifies the maximum amount of time, in milliseconds, the Java driver
8181
waits for a connection to open before timing out. A value of 0 instructs
8282
the driver to never time out while waiting for a connection to open.
8383

8484
*Default:* ``10000`` (10 seconds)
8585

86-
* - :urioption:`maxConnecting`
86+
* - ``maxConnecting``
8787

8888
- Maximum number of connections a pool may establish
8989
concurrently.
9090

9191
*Default:* ``2``
9292

93-
* - :urioption:`maxIdleTimeMS`
93+
* - ``maxIdleTimeMS``
9494

9595
- The maximum number of milliseconds that a connection can
9696
remain idle in the pool before being removed and closed.
9797

9898
*Default:* ``0``
9999

100-
* - :urioption:`maxPoolSize`
100+
* - ``maxPoolSize``
101101

102102
- Maximum number of connections opened in the pool. When the
103103
connection pool reaches the maximum number of connections, new
104104
connections wait up until to the value of
105-
:urioption:`waitQueueTimeoutMS`.
105+
``waitQueueTimeoutMS``.
106106

107107
*Default:* ``100``
108108

109-
* - :urioption:`minPoolSize`
109+
* - ``minPoolSize``
110110

111111
- Minimum number of connections opened in the pool.
112-
The value of :urioption:`minPoolSize` must be less than
113-
the value of :urioption:`maxPoolSize`.
112+
The value of ``minPoolSize`` must be less than
113+
the value of ``maxPoolSize``.
114114

115115
*Default*: ``0``
116116

117-
* - :urioption:`socketTimeoutMS`
117+
* - ``socketTimeoutMS``
118118

119119
- Number of milliseconds to wait before timeout on a TCP
120120
connection.
121121

122-
Do *not* use :urioption:`socketTimeoutMS` as a mechanism for
122+
Do *not* use ``socketTimeoutMS`` as a mechanism for
123123
preventing long-running server operations.
124124

125125
Setting low socket timeouts may result in operations that error
126126
before the server responds.
127127

128128
*Default*: ``0``, which means no timeout.
129129

130-
* - :urioption:`waitQueueTimeoutMS`
130+
* - ``waitQueueTimeoutMS``
131131

132132
- Maximum wait time in milliseconds that a thread can wait for
133133
a connection to become available. A value of ``0`` means there

0 commit comments

Comments
 (0)