每天,我都会收到一堆文件(更新)。我想要做的是插入每个不存在的项目。
- 我还想记录我第一次插入它们的时间,以及最后一次在更新中看到它们的时间。
- 我不想有重复的文件。
- 我不想删除以前保存但不在我的更新中的文档。
- 95%(估计)的记录每天都未经修改。
我正在使用 Python 驱动程序(pymongo)。
我目前做的是(伪代码):
for each document in update:
existing_document = collection.find_one(document)
if not existing_document:
document['insertion_date'] = now
else:
document = existing_document
document['last_update_date'] = now
my_collection.save(document)
我的问题是它非常慢(不到 100 000 条记录需要 40 分钟,而且我有数百万条记录在更新中)。我很确定有一些内置的东西可以做到这一点,但是 update() 的文档是 mmmhhh ......有点简洁......(http://www.mongodb.org/display/DOCS/Updating)
有人可以建议如何更快地做到这一点吗?