File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ Connection Pools
17
17
Overview
18
18
--------
19
19
20
- In this guide, you can learn about how {+driver-short+} uses connection pools to manage
20
+ In this guide, you can learn about how the {+driver-short+} uses connection pools to manage
21
21
connections to a MongoDB deployment and how you can configure connection pool settings
22
22
in your application.
23
23
24
- A connection pool is a cache of open database connections maintained by {+driver-short+}.
25
- When your application requests a connection to MongoDB, {+driver-short+} seamlessly
24
+ A connection pool is a cache of open database connections maintained by the {+driver-short+}.
25
+ When your application requests a connection to MongoDB, the {+driver-short+} seamlessly
26
26
gets a connection from the pool, performs operations, and returns the connection
27
27
to the pool for reuse.
28
28
@@ -38,7 +38,7 @@ concurrent MongoDB operations in your multi-threaded application.
38
38
39
39
The ``maxPoolSize`` option sets the maximum size of each connection pool, which
40
40
defaults to 100. If the number of in-use connections to a server reaches the
41
- value of maxPoolSize, the next request to that server will wait until a
41
+ value of `` maxPoolSize`` , the next request to that server will wait until a
42
42
connection becomes available.
43
43
44
44
Each ``MongoClient`` instance opens two more sockets per server in your MongoDB
You can’t perform that action at this time.
0 commit comments