这里是MongoDB文章示例示例,其中包含嵌入式注释:
{
_id: 1,
name: "article_1",
comments: [
{ title: 'title_1_1', ... },
{ title: 'title_1_2', ... }
]
}
{
_id: 2,
name: "article_2",
comments: [
{ title: 'title_2_1', ... },
{ title: 'title_2_2', ... },
{ title: 'title_2_3', ... }
]
}
如何有效查询评论总数?上面的示例结果应为5。