mongodb insertedIds数组是否保证与InsertMany中插入的文档顺序相同?

vfhzx4xs  于 2023-06-29  发布在  Go
关注(0)|答案(1)|浏览(101)

我在阅读这个doc:
https://www.mongodb.com/docs/manual/reference/method/db.collection.insertMany/
返回对象的insertedIds属性是否包含一个数组,该数组中插入的_id的顺序与insertMany操作中列出的文档的顺序相同?

xtfmy6hx

xtfmy6hx1#

默认情况下,文档是按顺序插入的,insertedIds也是按顺序插入的。

ordered: boolean
Optional. A boolean specifying whether the mongod instance should perform an ordered or unordered insert. Defaults to true.

相关问题