I have a django application every api hit in django creating one db connection to handle that request and basically this is an overhead as this is creating several connections if there are multiple requests to handle so I want to have db connection pooling or persistent connection for efficient handling.
I have gone through the django doc for this as there is CONN_MAX_AGE parameter but that doesn't solve the problem as that won't be using older connection to handle new request so what should be the best way to manage open db connections.