gpt4 book ai didi

node.js - 将多个文档插入 MongoDB,同时需要唯一索引

转载 作者:太空宇宙 更新时间:2023-11-03 23:42:17 25 4
gpt4 key购买 nike

我的集合Pphone字段上有一个唯一索引:

db.P.ensureIndex( { phone: 1 }, { unique: true, dropDups: true } )
db.P.insert( {phone:"555-1234"} )

如果我插入一组文档,其中甚至一个文档都有重复的键:

db.P.insert( [{phone:"911"},{phone:"555-1234"}] )
> E11000 duplicate key error index: test.P.$phone_1 dup key: { : "555-1234" }

整个插入失败,没有插入有效的数字。

问题:如何进行批量插入、确保插入有效文档并获取有关哪些插入失败的信息? 使用 Nodejs api 显示代码的奖励积分。

最佳答案

MongoDB 驱动程序有一个“ContinueOnError”选项,该选项会导致 mongo 跳过具有重复唯一键的记录。至于确定跳过的内容,根据文档:“如果批量插入期间发生多个错误,客户端只会收到生成的最后一个错误。( http://docs.mongodb.org/manual/core/bulk-inserts/ )。

对于 Node.js,它会是这样的

db.P.insert( [{phone:"911"},{phone:"555-1234"}], {continueOnError:true} )

http://mongodb.github.io/node-mongodb-native/api-generated/collection.html#insert

关于node.js - 将多个文档插入 MongoDB,同时需要唯一索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21464644/

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