Skip to content

Commit

Permalink
reword
Browse files Browse the repository at this point in the history
  • Loading branch information
rachel-mack committed Jan 10, 2025
1 parent 0c8260b commit 1967e41
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/connect/connection-pools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ details on how to use a ``mongocxx::client`` in a thread-safe manner.
Configuring a Connection Pool
-----------------------------

The number of clients in a connection pool is determined by the URI parameter
``maxPoolSize``. The maximum number of clients created by a ``mongocxx::pool`` (both
in the pool and checked out). The default value is 100. Once it is reached,
The number of clients in a connection pool is limited by the URI parameter
``maxPoolSize``. Once the number of clients created by a ``mongocxx::pool``
(both in the pool and checked out) reaches ``maxPoolSize``,
``mongocxx::pool::acquire`` blocks until another thread returns a client to the
pool.
pool. The default value is 100.

Using a Connection Pool
-----------------------
Expand Down

0 comments on commit 1967e41

Please sign in to comment.