[job] freelance django developer needed

2008-12-31 Thread derek73
We are currently looking for a Django developer or two to join us on a freelance basis. Our "mission", replyforall.com, is ready for the next phase and we're looking for some additional developer bandwidth to help us take it there. Our current need is more slanted towards a backend web developer/

Re: help, ORM memory problems

2008-11-26 Thread derek73
Thanks, DEBUG was my problem. totally forgot about that. On Nov 23, 4:50 pm, Doug B <[EMAIL PROTECTED]> wrote: > One thing that has bitten me more times than I care to remember is > forgetting to disable DEBUG in settings.py before processing large > datasets.  The SQL queries build up in connect

help, ORM memory problems

2008-11-23 Thread derek73
I have written a management script to migrate data from an existing site into our new Django-powered site. The script runs fine with one exception, memory consumption. A few of the tables I need to migrate have around 250,000 records, and it seems that the Django ORM caches each record in memory a

Re: flatpage at root/home?

2008-11-23 Thread derek73
try replacing: (r'', include('django.contrib.flatpages.urls')), with (r'^$', include('django.contrib.flatpages.urls')), On Nov 23, 6:48 am, watusee <[EMAIL PROTECTED]> wrote: > Upgraded from 96 to 1.02. My home/root (at 127.0.0.1/) page (using > flatpages) now doesn't work using runserver. O