From 43a8745e628454f52ce44dc3ffd63326f9bf03f5 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Fri, 4 Aug 2023 19:09:47 -0500 Subject: [PATCH] link connection string from connection pool Closes #647 --- docs/references/connection_pool.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/references/connection_pool.rst b/docs/references/connection_pool.rst index db7ed0160..0876dbd27 100644 --- a/docs/references/connection_pool.rst +++ b/docs/references/connection_pool.rst @@ -7,6 +7,11 @@ A connection pool is a cache of reusable database connections. It allows serving Minimizing connections is paramount to performance. Each PostgreSQL connection creates a process, having too many can exhaust available resources. +Connection String +----------------- + +For connecting to the database, the pool requires a connection string. You can can configure it using :ref:`db-uri`. + .. _pool_growth_limit: .. _dyn_conn_pool: