Bulk.getOperations()
Bulk.getOperations()
返回通过
Bulk.execute()
执行的写入操作大量。 返回的写入操作按MongoDB确定的分组执行。 有关MongoDB如何对批量写入操作列表进行分组的信息,请参阅Bulk.execute() 行为。仅在 之后使用
Bulk.getOperations()
Bulk.execute()
}。Bulk.getOperations()
在调用Bulk.execute()
} 将导致列表 不完整 。
例子
以下示例在items
集合上初始化Bulk()
操作构建器,添加一系列写入操作,执行这些操作,然后在bulk
构建器对象上调用getOperations()
:
var bulk = db.items.initializeUnorderedBulkOp(); for (var i = 1; i <= 1500; i++) { bulk.insert( { x: i } ); } bulk.execute(); bulk.getOperations();
getOperations()
方法返回一个包含已执行操作的数组。 输出显示 MongoDB 将操作分为2组,一组包含1000操作,另一组包含500操作。 有关 MongoDB 如何对批量写入操作列表进行分组的信息,请参阅Bulk.execute() 行为
虽然该方法会返回返回数组中的所有 1500 个操作,但为了简洁起见,本页省略了一些结果。
[ { "originalZeroIndex" : 0, "batchType" : 1, "operations" : [ { "_id" : ObjectId("53a8959f1990ca24d01c6165"), "x" : 1 }, ... // Content omitted for brevity { "_id" : ObjectId("53a8959f1990ca24d01c654c"), "x" : 1000 } ] }, { "originalZeroIndex" : 1000, "batchType" : 1, "operations" : [ { "_id" : ObjectId("53a8959f1990ca24d01c654d"), "x" : 1001 }, ... // Content omitted for brevity { "_id" : ObjectId("53a8959f1990ca24d01c6740"), "x" : 1500 } ] } ]
返回的字段
该数组包含具有以下字段的文档:
originalZeroIndex
指定基于零索引将操作添加到批量操作构建器的顺序;例如 添加到批量操作构建器的第一个操作的
originalZeroIndex
值为0
。