> I've got some time for testing and results are that without DEBUG is no
> memory overhead. But I still wonder that if I delete connection.queries
> in every cycle, why memory consumption still grows. What other
> structures are created in DEBUG mode? Simple 'grep DEBUG' showed nothing
> really i
Tomas Kopecek napsal(a):
> Honza Král napsal(a):
>> On 9/9/07, Tomas Kopecek <[EMAIL PROTECTED]> wrote:
>>> Honza Kr�l napsal(a):
can you replicate this with DEBUG=False in your settings?
without DEBUG turned on, no queries will be saved. I very much doubt
that all these sites
Honza Král napsal(a):
> can you replicate this with DEBUG=False in your settings?
>
> without DEBUG turned on, no queries will be saved. I very much doubt
> that all these sites built on Django are either leaking memory or not
> using large quantities of objects like this one here.
I've got some
Honza Král napsal(a):
> On 9/9/07, Tomas Kopecek <[EMAIL PROTECTED]> wrote:
>> Honza Kr�l napsal(a):
>>> can you replicate this with DEBUG=False in your settings?
>>>
>>> without DEBUG turned on, no queries will be saved. I very much doubt
>>> that all these sites built on Django are either leakin
On 9/9/07, Tomas Kopecek <[EMAIL PROTECTED]> wrote:
>
> Honza Kr�l napsal(a):
> > can you replicate this with DEBUG=False in your settings?
> >
> > without DEBUG turned on, no queries will be saved. I very much doubt
> > that all these sites built on Django are either leaking memory or not
> > usin
can you replicate this with DEBUG=False in your settings?
without DEBUG turned on, no queries will be saved. I very much doubt
that all these sites built on Django are either leaking memory or not
using large quantities of objects like this one here.
On 9/8/07, Tomas Kopecek <[EMAIL PROTECTED]> w
Hello,
imagine following code snippets:
---
class Simple(models.Model):
data = models.CharField(maxlength = 1000)
for id in Simple.objects.all():
Simple.objects.get(pk = id)
---
For cycle should create instance of Simple and allocate corresponding
memory. Immediately after that all memo