1

我有一个文档集合,其中每个文档都应该有另一个匹配的文档。(这不是设计使然,仅适用于我当前的操作。)但是,集合中文档数量的当前计数是奇数。有没有一种方法可以查询其他文档未共享的键值?

IE。如果我有这样的收藏:

{_id:'dcab0001', foo: 1, bar: 'dfgdgd'}
{_id:'dcab0002', foo: 2, bar: 'tjhttj'}
{_id:'dcab0003', foo: 1, bar: 'ydgdge'}
{_id:'dcab0004', foo: 3, bar: 'jyutkf'}
{_id:'dcab0005', foo: 3, bar: 'pofsth'}

我可以对此进行查询foo,以返回带有 id 的文档dcab0002

4

1 回答 1

3

您可以使用 MapReduce 或在 MongoDB 2.2+ 中使用Aggregation Framework来执行此操作。

这是使用聚合框架的示例:

db.pairs.aggregate(

    // Group by values of 'foo' and count duplicates
    { $group: {
        _id: '$foo',
        key: { $push: '$_id' },
        dupes: { $sum: 1 }
    }},

    // Find the 'foo' values that are unpaired (odd number of dupes)
    { $match: {
        dupes: { $mod: [ 2, 1 ] }
    }}

    // Optionally, could add a $project to tidy up the output
)

样本输出:

{
    "result" : [
        {
            "_id" : 2,
            "key" : [
                "dcab0002"
            ],
            "dupes" : 1
        }
    ],
    "ok" : 1
}
于 2012-10-16T12:19:30.433 回答