Я читал Django bulk_create и несколько его "недостатков":
"
This has a number of caveats though:
1. The model save() method will not be called, and the pre_save and post_save signals will not be sent.
2. It does not work with child models in a multi-table inheritance scenario.
3. If the model primary key is an AutoField it does not retrieve and set the primary key attribute, as save() does.
"
Я не совсем понял это. Поэтому, если у меня есть список объектов, перейдите в файл bulk_create:
objList = [a, b, c,] #none are saved
model.objects.bulk_create(objList)
Могу ли я использовать эти объекты в внешних ключах?
for obj in objList:
o = otherModel(something='asdfasdf', fkey=obj)
o.save() # will this be fine given the caveats stated above?
Так будет ли отношение foreignKey в порядке? Также, когда он говорит 2. Он не работает с дочерними моделями в сценарии наследования с несколькими таблицами, это означает, что любая модель, которая наследуется от другой модели (абстрактная или нет), не может использовать bulk_create?