Re: Django, The Web Framework for perfectionists and innovative with rechargeable batteries.

2010-07-31 Thread Eugene Lazutkin
1) Vito had a legitimate question. 2) It is hard to find anything in archives especially with a limited English. 3) He asked his question about supporting new technologies. 4) Jacob answered and explained the situation giving a lot of details and examples. 5) Vito thanked for the answer and explain

Re: Memory usage depends on number of fields in model, in a strange way

2010-07-31 Thread OverKrik
Nope, I am testing Django memory usage for different kind of objects, and create 10 instances to minimize per-object measurement error, memory usage pattern is exactly the same for 100 or 1000 objects. On Jul 31, 9:30 am, hcarvalhoalves wrote: > """ > class U(models.Model): >     name = model

Re: Memory usage depends on number of fields in model, in a strange way

2010-07-31 Thread Sergej dergatsjev eecho
Why are you testing? Have you seen memory leak somewhere? I ask it because. I had problems with memory leaks in configuration (Mysql, Apache, mod_python) but it was bad configuration of Mysql server and Apache. If you send information about your test environment. We can better reproduce you pro

Re: Memory usage depends on number of fields in model, in a strange way

2010-07-31 Thread OverKrik
Hi, I am not having any memory leaks, just checking how much memory every part of django use out of interest.(And because I am writing an article about how Django ORM rocks :) ). On Jul 31, 3:40 pm, Sergej dergatsjev eecho wrote: > Why are you testing? > > Have you seen memory leak somewhere? > >

Re: Django, The Web Framework for perfectionists and innovative with rechargeable batteries.

2010-07-31 Thread tiemonster
So anyways... Google App Engine is a special case. It is not nearly as robust a database solution as something like CouchDB or MongoDB - but then again it was never meant to be. The direction from the beginning was on scaling, even if it meant dropping features. The BigTable ORM lacks many of the

Re: Django, The Web Framework for perfectionists and innovative with rechargeable batteries.

2010-07-31 Thread Jacob Kaplan-Moss
On Sat, Jul 31, 2010 at 9:04 AM, tiemonster wrote: > I've been doing lots of research with Django on GAE, and am actually > using it in production. If you're interesting in this particular > stack, please contact me off-list and I can attempt to answer any > questions that you have. I'd love to s

Re: Memory usage depends on number of fields in model, in a strange way

2010-07-31 Thread Jacob Kaplan-Moss
On Sat, Jul 31, 2010 at 7:20 AM, OverKrik wrote: > Hi, I am not having any memory leaks, just checking how much memory > every part of django use out of interest.(And because I am writing an > article about how Django ORM rocks :) ). You've constructed a somewhat artificial situation -- in the re

Re: Memory usage depends on number of fields in model, in a strange way

2010-07-31 Thread OverKrik
Jacob, thank you for an excellent explanation. On Jul 31, 7:36 pm, Jacob Kaplan-Moss wrote: > On Sat, Jul 31, 2010 at 7:20 AM, OverKrik wrote: > > Hi, I am not having any memory leaks, just checking how much memory > > every part of django use out of interest.(And because I am writing an > > art

Re: Django, The Web Framework for perfectionists and innovative with rechargeable batteries.

2010-07-31 Thread Waldemar Kornewald
On Sat, Jul 31, 2010 at 4:04 PM, tiemonster wrote: > So anyways... > > Google App Engine is a special case. It is not nearly as robust a > database solution as something like CouchDB or MongoDB - but then > again it was never meant to be. The direction from the beginning was > on scaling, even if

Re: Ticket #14007: Automatically discover models within a package without using the app_label Meta attribute

2010-07-31 Thread Owen Nelson
I the first time I went through the trouble of refactoring a large set of models into a package I couldn't figure out why my models were "missing". Took me a while to trawl through a number of blog posts to come across the app_label requirement/mechanism. At the time, I don't think it was documen