File tree Expand file tree Collapse file tree 3 files changed +31
-4
lines changed
source/fundamentals/connection Expand file tree Collapse file tree 3 files changed +31
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Link Checker
2
+ on : [push, pull_request]
3
+ jobs :
4
+ build :
5
+ name : Build
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - name : Set up Go 1.17
9
+ uses : actions/setup-go@v2
10
+ with :
11
+ go-version : 1.17
12
+
13
+ - name : Check out source code
14
+ uses : actions/checkout@v2
15
+ with :
16
+ fetch-depth : 2
17
+
18
+ - name : Install checker tool
19
+ run : go install github.com/terakilobyte/checker@latest
20
+
21
+ - name : Run checker tool
22
+ run : git diff --name-only HEAD^..HEAD | tr "\n" "," | xargs checker --changes
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ toc_landing_pages = [
8
8
]
9
9
10
10
[constants ]
11
- version = 4.4
11
+ version = " 4.4"
12
12
full-version = " {+version+}.0"
13
13
package-name-org = " mongodb-org"
14
14
api = " https://mongodb.github.io/mongo-java-driver/{+version+}"
Original file line number Diff line number Diff line change @@ -180,9 +180,9 @@ parameters of the connection URI to specify the behavior of the client.
180
180
* - **zlibCompressionLevel**
181
181
- integer
182
182
- Specifies the degree of compression that `Zlib <https://zlib.net/>`__
183
- should use to decrease the size of requests to the connected MongoDB
184
- instance. The level can range from ``-1`` to ``9``, with lower values
185
- compressing faster (but resulting in larger requests) and larger values
183
+ should use to decrease the size of requests to the connected MongoDB
184
+ instance. The level can range from ``-1`` to ``9``, with lower values
185
+ compressing faster (but resulting in larger requests) and larger values
186
186
compressing slower (but resulting in smaller requests).
187
187
188
188
* - **retryWrites**
@@ -206,6 +206,11 @@ parameters of the connection URI to specify the behavior of the client.
206
206
- boolean
207
207
- Specifies that the driver must connect to the host directly.
208
208
209
+ * - **maxConnecting**
210
+ - integer
211
+ - Specifies the number of connections the driver will driver concurrently
212
+ establish before making them available in the connection pool.
213
+
209
214
For a complete list of options, see the
210
215
`ConnectionString <{+api+}/apidocs/mongodb-driver-core/com/mongodb/ConnectionString.html>`__
211
216
API reference page.
You can’t perform that action at this time.
0 commit comments