Is there a more efficent way for doing this?
for item in item_list:
e, new = Entry.objects.get_or_create(
field1 = item.field1,
field2 = item.field2,
)
|
Is there a more efficent way for doing this?
| |||
feedback
|
|
You can't do decent bulk insertions with get_or_create (or even create), and there's no API for doing this easily. If your table is simple enough that creating rows with raw SQL isn't too much of a pain, it's not too hard; something like:
where %s is a string like | |||||||||
feedback
|
|
Depends on what you are aiming at. You can use See also this discussion. | |||
|
feedback
|
|
I'd say there isn't. But I wonder what type your | |||
|
feedback
|
|
If you're not sure whether the things in your If you know the items are NOT in your DB, you would be much better doing:
And if you don't need the objects, then just ignore the return from the function call. It won't speed the DB stuff, but it will help with memory management if that's an issue. If you're not sure whether the data is already in the DB, but either field has a
You could increase speed in either case by manually managing the transactions. Django will automatically create and commit a transaction for every save, but provides some decorators that will greatly increase efficiency if you know you'll be doing a lot of DB saves in a particular function. The Django docs do a better job of explaining all of this than I can here, but you'll probably want to pay particular attention to django.db.transaction.commit_on_success | |||||||||
feedback
|