[Django]-Django database connections pool with psycopg2.pool

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.

Leave a comment