Sessions memory issue

2013-10-24 Thread John Carlo
Hello everybody, I'm a newbie with Django, I love it but something it's not clear to me. So I'm here to make a question. Thank you in advance. I have an application that has some istances of custom classes I wrote. At every client request, every istance creates a big list of strings. Then, a f

Re: Sessions memory issue

2013-10-25 Thread John Carlo
store it in a temporary > file. > > And make sure you have a process to delete old data. > > Finally you could also compress the text when you save it. > > Hopes this helps. > > François > > > On Oct 24, 2013, at 3:51 PM, John Carlo > > wrote: > >

onetoone field and memory issue

2013-11-26 Thread John Carlo
Hello everybody, I have a memory issue and I'm looking for some suggestions. I have the following model class Entity(models.Model): item= models.OneToOneField(Bigdata, blank = True,null=True) Bigdata is a table with 150.000+ items In the admin interface, when I try to add a new Entity

Re: onetoone field and memory issue

2013-11-26 Thread John Carlo
great, now it works like a sharm Thank you very very much! 2013/11/26 James Bennett > > https://docs.djangoproject.com/en/1.6/ref/contrib/admin/#django.contrib.admin.ModelAdmin.raw_id_fields > > -- > You received this message because you are subscribed to a topic in the > Google Groups "Dja

Massive import in Django database

2014-06-11 Thread John Carlo
Hello everybody, I've fallen in love with Django two years ago and I've been using it for my job projects. In the past I found very useful information in this group, so a big thank you guys! I have a little doubt. I have to import in Django db (sqlite for local development, mySql on the server