gpt4 book ai didi

mongodb - 使用 Meteor 中的一次调用将多个文档插入 mongodb

转载 作者:可可西里 更新时间:2023-11-01 09:12:14 26 4
gpt4 key购买 nike

在 mongo shell 中,可以 insert an array of documents with one call .在 Meteor 项目中,我尝试使用

MyCollection = new Mongo.Collection("my_collection")
documentArray = [{"one": 1}, {"two": 2}]
MyCollection.insert(documentArray)

但是,当我从 mongo shell 检查 my_collection 时,它显示只插入了一个文档,并且该文档包含整个数组,就好像它是一个 map :

db.my_collection.find({})
{ "_id" : "KPsbjZt5ALZam4MTd", "0" : { "one" : 1 }, "1" : { "two" : 2} }

我是否可以使用 Meteor 调用一次添加一系列文档,或者必须使用一种技术,例如描述的技术 here

我认为在一次调用中插入多个文档会优化客户端的性能,新文档会同时可用。

最佳答案

您可以使用 bulk API在服务器端进行批量插入。使用 forEach() 方法操作数组,并在循环内使用批量插入操作插入文档,这些操作是服务器顶部的简单抽象,可以轻松构建批量操作。

请注意,对于比 2.6 更旧的 MongoDB 服务器,API 将对操作进行下转换。但是,不可能 100% 下转换,因此可能存在一些无法正确报告正确数字的边缘情况。

您可以通过 Mongo.Collection 上的 rawCollectionrawDatabase 方法获得对 npm MongoDB 驱动程序中的集合和数据库对象的原始访问

MyCollection = new Mongo.Collection("my_collection");

if (Meteor.isServer) {
Meteor.startup(function () {
Meteor.methods({
insertData: function() {
var bulkOp = MyCollection.rawCollection().initializeUnorderedBulkOp(),
counter = 0,
documentArray = [{"one": 1}, {"two": 2}];

documentArray.forEach(function(data) {
bulkOp.insert(data);

counter++;
// Send to server in batch of 1000 insert operations
if (counter % 1000 == 0) {
// Execute per 1000 operations and re-initialize every 1000 update statements
bulkOp.execute(function(e, rresult) {
// do something with result
});
bulkOp = MyCollection.rawCollection().initializeUnorderedBulkOp();
}
});

// Clean up queues
if (counter % 1000 != 0){
bulkOp.execute(function(e, result) {
// do something with result
});
}
}
});
});
}

关于mongodb - 使用 Meteor 中的一次调用将多个文档插入 mongodb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35892903/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com