我有一组包含唯一ID字段的文档。现在我有一个id列表,其中可能包含集合中不存在的一些ID。从列表中找出这些ID的最佳方法是什么?
我知道我可以使用$ in运算符来获取列表中包含id的文档然后与给定的id列表进行比较,但是有更好的方法吗?
答案 0 :(得分:2)
我想你的收藏中有以下文件:
{ "_id" : ObjectId("55b725fd7279ca22edb618bb"), "id" : 1 }
{ "_id" : ObjectId("55b725fd7279ca22edb618bc"), "id" : 2 }
{ "_id" : ObjectId("55b725fd7279ca22edb618bd"), "id" : 3 }
{ "_id" : ObjectId("55b725fd7279ca22edb618be"), "id" : 4 }
{ "_id" : ObjectId("55b725fd7279ca22edb618bf"), "id" : 5 }
{ "_id" : ObjectId("55b725fd7279ca22edb618c0"), "id" : 6 }
以及id
var listId = [ 1, 3, 7, 9, 8, 35 ];
我们可以使用.filter
方法返回您馆藏中不存在的ids
数组。
var result = listId.filter(function(el){
return db.collection.distinct('id').indexOf(el) == -1; });
这会产生
[ 7, 9, 8, 35 ]
现在,您还可以使用aggregation frameworks和$setDifference
运算符。
db.collection.aggregate([
{ "$group": { "_id": null, "ids": { "$addToSet": "$id" }}},
{ "$project" : { "missingIds": { "$setDifference": [ listId, "$ids" ]}, "_id": 0 }}
])
这会产生:
{ "missingIds" : [ 7, 9, 8, 35 ] }
答案 1 :(得分:1)
不幸的是,MongoDB只能使用内置函数(否则我建议使用set
),但您可以尝试在列表中找到所有不同的ID,然后手动将它们拉出来。
像(未经测试)的东西:
var your_unique_ids = ["present", "not_present"];
var present_ids = db.getCollection('your_col').distinct('unique_field', {unique_field: {$in: your_unique_ids}});
for (var i=0; i < your_unique_ids.length; i++) {
var some_id = your_unique_ids[i];
if (present_ids.indexOf(some_id) < 0) {
print(some_id);
}
}
答案 2 :(得分:1)
以下查询会获取结果:
var listid = [1,2,3,4];
db.collection.aggregate([
{$project: { uniqueId :
{
"$setDifference":
[ listid , db.collection.distinct( "unique_field" )]} , _id : 0 }
},
{$limit:1}
]);