Re: Persistent connections

2007-02-27 Thread Ivan Sagalaev
[EMAIL PROTECTED] wrote: > Is this truly the case? I thought Django used a persistent db > connection. No, Django closes connections upon each request. There were some discussions about it in the early days and some consensus was along the lines that a simple ad-hoc solutions like "just don't c

Persistent connections

2007-02-27 Thread [EMAIL PROTECTED]
> Hmm ... It looks like Django is trying to create connections on the fly, >> which is a bad thing (it should use persistent connections). >> I'm not a Django expert but there must be a way to tell Django to use >> persistent connections. Is this truly the case? I th