On Thu, Jul 12, 2012 at 3:37 AM, Anand Agarwal <
anan...@gmail.com> wrote:
> As you know, Django uses new database connection for each request. This
> works well initially. However as the load on the server increases,
> creating/destroying connections to database starts taking significant amount
> of time. You will find many questions about using some kind of connection
> pooling for Django on sites likeStackOverflow For example, Django
> persistent database connection.