Re: Disconnecting from the server

David G. Johnston <david.g.johnston@gmail.com>

From: "David G. Johnston" <david.g.johnston@gmail.com>
To: Igor Korot <ikorot01@gmail.com>
Cc: "pgsql-generallists.postgresql.org" <pgsql-general@lists.postgresql.org>
Date: 2026-05-17T02:50:33Z
Lists: pgsql-general
On Saturday, May 16, 2026, Igor Korot <ikorot01@gmail.com> wrote:
>
> Or should I perform some clean-up on the server - some kind of "connection
> pool reset" so that the resources associated with the connection will be
> gone?
>

There server doesn’t have a connection pool.

You can inspect what is connected to the server via the pg_stat_activity
view.

https://www.postgresql.org/docs/current/monitoring-stats.html#MONITORING-PG-STAT-ACTIVITY-VIEW

David J.