Hacker News new | ask | show | jobs
by victorhooi 4671 days ago
I think the issue is the call to save() (I assume this is meant to be outside the comma).

Basically, it'll hit the database after each query.

1 comments

I originally thought it might be that too, but it seems to me like you'll have to hit the database n times for n queries no matter what. Unless Django has some builtin batch save functionality.
Hmm, there's bulk_create(), introduced in Django 1.4, to create multiple new objects in one DB call.

However, I'm not aware of anything that would do the same to update properties.