Update connection_pool.rst typo

This commit is contained in:
Grant
2023-07-05 12:13:23 -05:00
committed by steve-chavez
parent ab8ccf43a6
commit 4706472df9
+1 -1
View File
@@ -5,7 +5,7 @@ Connection Pool
A connection pool is a cache of reusable database connections. It allows serving many HTTP requests using few database connections. Every request to an :doc:`API resource <api>` borrows a connection from the pool to start a :doc:`transaction <transactions>`.
Minimizing connections its paramount to performance. Each PostgreSQL connection creates a process, having too many can exhaust available resources.
Minimizing connections is paramount to performance. Each PostgreSQL connection creates a process, having too many can exhaust available resources.
.. _pool_growth_limit:
.. _dyn_conn_pool: