You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// number of milliseconds a client must sit idle in the pool and not be checked out
// before it is disconnected from the backend and discarded
// default is 10000 (10 seconds) - set to 0 to disable auto-disconnection of idle clients
idleTimeoutMillis?: number
very frustrating. the default configuration for pg-pool results in no pooling whatsoever. acquiring a connection always returns a new, freshly created connection that is immediately discarded once it is released. 0 is not a sensible default. 10 seconds doesn't seem like a sensible default either.