Open
Description
I'm looking at how django implemented the bulk_create option. The main logic from that exists here: https://github.com/django/django/blob/master/django/db/models/query.py#L1049-L1069 From what I understand the bulk_create will be making many N queries to the database. So they are using a rather naive approach from my understanding.
Whereas django-bulk-update is just making a single query with all updates. I'm bringing this up because it seems like it would be ideal to be using bulk_create to make bulk_update or create in #49 per comment there.
Metadata
Metadata
Assignees
Labels
No labels