From 607138b54e76f5c0120010dcb934a88bd3dc13a4 Mon Sep 17 00:00:00 2001 From: Michael Morisi Date: Thu, 13 Mar 2025 09:04:11 -0400 Subject: [PATCH 1/2] DOCSP-48326: Connection Pooling technical feedback --- source/connect/connection-options.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/source/connect/connection-options.txt b/source/connect/connection-options.txt index 7d9fe378..fd542558 100644 --- a/source/connect/connection-options.txt +++ b/source/connect/connection-options.txt @@ -165,8 +165,8 @@ in the {+mdb-server+} manual. - Description * - ``connectTimeoutMS`` - - | The time that {+driver-short+} waits when connecting a new - socket before timing out. + - | The time that {+driver-short+} waits when establishing a new + connection before timing out. | | **Data Type**: ``int`` | **Default**: ``20000`` @@ -184,7 +184,9 @@ in the {+mdb-server+} manual. | **Connection URI Example**: ``maxConnecting=3`` * - ``maxIdleTimeMS`` - - | The maximum time that a connection can remain idle in the pool. + - | The maximum time that a connection can remain idle in the pool. When a connection + exceeds this limit, {+driver-short+} closes the connection and checks it back + into the pool. | | **Data Type**: ``int`` | **Default**: ``None`` (no limit) From f3a2b2e1112a5f0a9c24e7ef151de4f69a77118d Mon Sep 17 00:00:00 2001 From: Michael Morisi Date: Thu, 13 Mar 2025 12:12:22 -0400 Subject: [PATCH 2/2] Noah feedback --- source/connect/connection-options.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/connect/connection-options.txt b/source/connect/connection-options.txt index fd542558..0a9e5234 100644 --- a/source/connect/connection-options.txt +++ b/source/connect/connection-options.txt @@ -185,8 +185,8 @@ in the {+mdb-server+} manual. * - ``maxIdleTimeMS`` - | The maximum time that a connection can remain idle in the pool. When a connection - exceeds this limit, {+driver-short+} closes the connection and checks it back - into the pool. + exceeds this limit, {+driver-short+} closes the connection and removes it from + the pool. | | **Data Type**: ``int`` | **Default**: ``None`` (no limit)