In the deployment HOWTO, enabling persistent database connections is recommended
I am wondering what the interaction is between persistent connections and PostgreSQL connection pools
If a pool is used, are persistent database connections still needed and how do they interact?
Separately, we are also planning to move to ASGI this year, and saw the persistent connections have a known issue on ASGI
Our postgres database runs within a separate container on the same host as our Django backend. Django communicates over TCP over an internal Docker network on the same host to the postgres container.
Are their recommendations for which of these features to use?