问题描述
我必须使用 Django 的 ORM 将 8000 多条记录插入到 SQLite 数据库中.此操作需要大约每分钟作为 cronjob 运行一次.
目前,我正在使用 for 循环遍历所有项目,然后将它们一一插入.
示例:
这样做的有效方法是什么?
两种插入方法的一些比较.
没有 commit_manually 装饰器(11245 条记录):
使用 commit_manually 装饰器(11245 条记录):
注意:test 脚本除了插入到数据库中之外,还执行一些其他操作(下载 ZIP 文件,从 ZIP 存档中提取 XML 文件,解析 XML文件),所以执行所需的时间并不一定代表插入记录所需的时间.
您想查看django.db.transaction.commit_manually
.
http://docs.djangoproject.com/en/dev/topics/db/transactions/#django-db-transaction-commit-manually
所以它会是这样的:
它只会提交一次,而不是在每次 save() 时提交.
在 django 1.3 中引入了上下文管理器.所以现在你可以使用 transaction.commit_on_success() 以类似的方式:
在 django 1.4 中,bulk_create
已添加,允许您创建模型对象的列表,然后一次性提交它们.
注意使用批量创建时不会调用保存方法.
<预><代码>>>>Entry.objects.bulk_create([...条目(标题=Django 1.0 发布"),...条目(标题=Django 1.1 宣布"),... Entry(headline="Breaking: Django is awesome")...])在 django 1.6 中,transaction.atomic 被引入,旨在替换现在的遗留函数 commit_on_success
和 commit_manually
.
来自 django 关于原子的文档:
atomic 既可用作装饰器:
作为上下文管理器:
I have to insert 8000+ records into a SQLite database using Django's ORM. This operation needs to be run as a cronjob about once per minute.
At the moment I'm using a for loop to iterate through all the items and then insert them one by one.
Example:
What is an efficient way of doing this?
Edit: A little comparison between the two insertion methods.
Without commit_manually decorator (11245 records):
Using commit_manually decorator (11245 records):
Note: The test script also does some other operations besides inserting into the database (downloads a ZIP file, extracts an XML file from the ZIP archive, parses the XML file) so the time needed for execution does not necessarily represent the time needed to insert the records.
You want to check out django.db.transaction.commit_manually
.
http://docs.djangoproject.com/en/dev/topics/db/transactions/#django-db-transaction-commit-manually
So it would be something like:
Which will only commit once, instead at each save().
In django 1.3 context managers were introduced. So now you can use transaction.commit_on_success() in a similar way:
In django 1.4, bulk_create
was added, allowing you to create lists of your model objects and then commit them all at once.
NOTE the save method will not be called when using bulk create.
In django 1.6, transaction.atomic was introduced, intended to replace now legacy functions commit_on_success
and commit_manually
.
from the django documentation on atomic:
atomic is usable both as a decorator:
and as a context manager:
这篇关于使用 Django 将数千条记录插入到 SQLite 表中的有效方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!