@@ -75,59 +75,59 @@ see the corresponding syntax:
75
75
* - Setting
76
76
- Description
77
77
78
- * - :urioption:` connectTimeoutMS`
78
+ * - `` connectTimeoutMS` `
79
79
80
80
- Specifies the maximum amount of time, in milliseconds, the Java driver
81
81
waits for a connection to open before timing out. A value of 0 instructs
82
82
the driver to never time out while waiting for a connection to open.
83
83
84
84
*Default:* ``10000`` (10 seconds)
85
85
86
- * - :urioption:` maxConnecting`
86
+ * - `` maxConnecting` `
87
87
88
88
- Maximum number of connections a pool may establish
89
89
concurrently.
90
90
91
91
*Default:* ``2``
92
92
93
- * - :urioption:` maxIdleTimeMS`
93
+ * - `` maxIdleTimeMS` `
94
94
95
95
- The maximum number of milliseconds that a connection can
96
96
remain idle in the pool before being removed and closed.
97
97
98
98
*Default:* ``0``
99
99
100
- * - :urioption:` maxPoolSize`
100
+ * - `` maxPoolSize` `
101
101
102
102
- Maximum number of connections opened in the pool. When the
103
103
connection pool reaches the maximum number of connections, new
104
104
connections wait up until to the value of
105
- :urioption:` waitQueueTimeoutMS`.
105
+ `` waitQueueTimeoutMS` `.
106
106
107
107
*Default:* ``100``
108
108
109
- * - :urioption:` minPoolSize`
109
+ * - `` minPoolSize` `
110
110
111
111
- 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` `.
114
114
115
115
*Default*: ``0``
116
116
117
- * - :urioption:` socketTimeoutMS`
117
+ * - `` socketTimeoutMS` `
118
118
119
119
- Number of milliseconds to wait before timeout on a TCP
120
120
connection.
121
121
122
- Do *not* use :urioption:` socketTimeoutMS` as a mechanism for
122
+ Do *not* use `` socketTimeoutMS` ` as a mechanism for
123
123
preventing long-running server operations.
124
124
125
125
Setting low socket timeouts may result in operations that error
126
126
before the server responds.
127
127
128
128
*Default*: ``0``, which means no timeout.
129
129
130
- * - :urioption:` waitQueueTimeoutMS`
130
+ * - `` waitQueueTimeoutMS` `
131
131
132
132
- Maximum wait time in milliseconds that a thread can wait for
133
133
a connection to become available. A value of ``0`` means there
0 commit comments