输入banner图图片脚本导航/分类

Django-数据库访问优化

=This is a test), Entry(headline=This is only a test), ])

优于:

Entry.objects.create(headline=This is a test)
Entry.objects.create(headline=This is only a test)

注意 :

  • 将不会调用模型的save()方法,并且不会发送pre_savepost_save信号。
  • 它不适用于多表继承场景中的子模型。
  • 如果模型的主键是AutoField,则不会像save()那样检索并设置主键属性,除非数据库后端支持(当前是PostgreSQL)。
  • 它不适用于多对多关系。

这也可以用在ManyToManyField中,所以:

my_band.members.add(me, my_friend)

优于

my_band.members.add(me)
my_band.members.add(my_friend)

 

Django-数据库访问优化

标签:bsp   tle   try   pytho   auto   索引   imp   nbsp   设置