最佳答案
MongoDB 中的聚合框架有解释函数吗? 我在文档中看不到。
如果没有其他检查方法,那么查询在聚合框架中是如何执行的?
我知道和发现你只是做
db.collection.find().explain()
但是在聚合框架中,我得到了一个错误
db.collection.aggregate(
{ $project : { "Tags._id" : 1 }},
{ $unwind : "$Tags" },
{ $match: {$or: [{"Tags._id":"tag1"},{"Tags._id":"tag2"}]}},
{
$group:
{
_id : { id: "$_id"},
"count": { $sum:1 }
}
},
{ $sort: {"count":-1}}
).explain()