Re: Bulk data insert

2009-08-20 Thread Abiel
Thanks for the feedback, I will go ahead and use raw SQL. Hopefully bulk inserts will be a feature in a future version of Django, especially given the rising importance of sites oriented towards large volumes of raw data. Abiel On Aug 20, 2:50 pm, Alex Gaynor wrote: > On Thu, Aug 20, 2009 a

Bulk data insert

2009-08-20 Thread Abiel
Is there an efficient way to use Django models to load a large number of records into a database without falling back on raw SQL? Creating a large number of model objects and then saving each one individually is very slow (I imagine Django is running INSERT and COMMIT each time?). Thanks very muc