码迷,mamicode.com
首页 > 其他好文 > 详细

django orm 批量存储数据

时间:2014-06-28 23:24:44      阅读:594      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   数据   os   art   

项目中 需要大量数据的保存操作,每条执行save操作效率太低,在官网上找到bull_create 的批量存储方式,效率提高很多

 

Insert in bulk

When creating objects, where possible, use the bulk_create() method to reduce the number of SQL queries. For example:

Entry.objects.bulk_create([
    Entry(headline="Python 3.0 Released"),
    Entry(headline="Python 3.1 Planned")
])

...is preferable to:

Entry.objects.create(headline="Python 3.0 Released")
Entry.objects.create(headline="Python 3.1 Planned")

Note that there are a number of caveats to this method, so make sure it’s appropriate for your use case.

This also applies to ManyToManyFields, so doing:

my_band.members.add(me, my_friend)

...is preferable to:

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

...where Bands and Artists have a many-to-many relationship.

django orm 批量存储数据,布布扣,bubuko.com

django orm 批量存储数据

标签:style   blog   color   数据   os   art   

原文地址:http://www.cnblogs.com/yu-zhang/p/3794321.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!