Is there a more efficient way for doing this?
for item in item_list: e, new = Entry.objects.get_or_create( field1 = item.field1, field2 =
Since 1.4 you can do bulk_create
See the docs
*Do pay attention to the caveats though (most important one being that the model’s save() method will not be called, and thus the pre_save and post_save signals will not be sent.) *