File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -56,15 +56,15 @@ your connection URI:
56
56
| Defaults to ``None`` (no limit)
57
57
58
58
* - ``maxPoolSize``
59
- - | Sets the maximum number of concurrent connections that the pool will maintain .
60
- If the maximum pool size is reached, further requests will wait until a connection
59
+ - | Sets the maximum number of concurrent connections that the pool maintains .
60
+ If the maximum pool size is reached, further requests wait until a connection
61
61
becomes available.
62
62
| Defaults to ``100``
63
63
64
64
* - ``minPoolSize``
65
- - | Sets the minimum number of concurrent connections that the pool will maintain . If
65
+ - | Sets the minimum number of concurrent connections that the pool maintains . If
66
66
the number of open connections falls below this value due to network errors,
67
- {+driver-short+} will attempt to create new connections to maintain this minimum.
67
+ {+driver-short+} attempts to create new connections to maintain this minimum.
68
68
| Defaults to ``0``
69
69
70
70
* - ``socketTimeoutMS``
@@ -73,11 +73,11 @@ your connection URI:
73
73
| Defaults to ``None`` (no timeout)
74
74
75
75
* - ``waitQueueTimeoutMS``
76
- - | Sets how long a thread will wait for a connection to become available in the pool
76
+ - | Sets how long a thread waits for a connection to become available in the connection pool
77
77
before timing out.
78
78
| Defaults to ``None`` (no timeout)
79
79
80
- The following code creates a client with a connection pool size of 50 by using the
80
+ The following code creates a client with a maximum connection pool size of ``50`` by using the
81
81
``maxPoolSize`` parameter:
82
82
83
83
.. code-block:: python
You can’t perform that action at this time.
0 commit comments