使用$ match和$ sample进行MongoDB聚合复杂度或CPU使用率分析

时间:2018-08-04 12:46:12

标签: database mongodb random aggregate sample

我的mongoDB中有这段代码试图获取数据的随机样本,因此,如果我的文档总数超过一百万个_id,我想知道复杂性和CPU使用率:

contents.aggregate([{
    $match: {
        "language": lang
    }
},
{
    $sample: {
        size: limit
    }
},
{
    $project: {
        'answers': 0,
        'processing': 0
    }
}
], callback)

0 个答案:

没有答案