4
Django has no support for connection pooling. Technically you could probably write a django db backend that used psycopg2, but I think you’d be much better off using an external process for connection pooling. Take a look at pgpool for this.
Source:stackexchange.com