admin管理员组文章数量:1415100
I have a collection in MongoDB where there are around (~200k records). My sample record would look like,
{
name:String,
slug:String,
metaDes:String,
content:String,
parentID:String,
thumbnail:String,
display:Boolean,
}
I am having a lot of duplicate records in the collection having same slug
I want to remove duplicate records based on slug
Is there any fast way to remove all duplicates with mongoose(Nodejs)?
Thanks!
I have a collection in MongoDB where there are around (~200k records). My sample record would look like,
{
name:String,
slug:String,
metaDes:String,
content:String,
parentID:String,
thumbnail:String,
display:Boolean,
}
I am having a lot of duplicate records in the collection having same slug
I want to remove duplicate records based on slug
Is there any fast way to remove all duplicates with mongoose(Nodejs)?
Thanks!
1 Answer
Reset to default 7Remove duplicate records in the collection having the same slug
db.table.aggregate([
{
"$group": {
_id: {slug: "$slug"},
slugs: { $addToSet: "$_id" } ,
count: { $sum : 1 }
}
},
{
"$match": {
count: { "$gt": 1 }
}
}
]).forEach(function(doc) {
doc.slugs.shift();
db.table.remove({
_id: {$in: doc.slugs}
});
})
Refarnce link
本文标签: javascriptHow to remove duplicates in mongoDB with mongoose(NodeJS)Stack Overflow
版权声明:本文标题:javascript - How to remove duplicates in mongoDB with mongoose(NodeJS) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745181520a2646486.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论