我正在展示一个mongodb集合文档结构的例子。我在进行查询时也显示了我的预期结果。
文档结构::
{
_id : "132423423",
name : "hi_code",
my_entries : [
{
e_id : "12345",
e_name : "f1",
e_posted : "2010-05-01",
},
{
e_id : "12346",
e_name : "f2",
e_posted : "2010-06-01",
},
{
e_id : "12346",
e_name : "f3",
e_posted : "2010-03-02",
}
]
}
查询结构::
db.myCollection.find( { my_entries : { $elemMatch : { e_posted : "2010-06-01",
e_name : "f2" } } } )
预期结果::
{
_id : "132423423",
name : "hi_code",
my_entries : [
{
e_id : "12346",
e_name : "f2",
e_posted : "2010-06-01",
}
]
}
我不想为此使用map reduce,因为我正在处理大数据库,这会使性能降低,只想通过查找查询才能实现。
答案 0 :(得分:3)
您的实际结果是与查询匹配的整个文档。
您只希望返回部分文档,但无法指定仅在2.0中返回匹配的数组元素。
从版本2.2开始(下一个生产版本目前作为不稳定开发版本2.1提供),您将能够使用聚合框架在此示例中找回您想要的内容。
2.2也支持$elemMatch as a projection operator - 请注意,这将最多返回一个匹配的数组元素。
使用聚合框架,您可以执行以下操作:
db.myCollection.aggregate( [
{$match : { my_entries : { $elemMatch : { e_posted : "2010-06-01", e_name : "f2" } } } },
{$unwind : "$my_entries"},
{$match : { my_entries : { e_posted : "2010-06-01", e_name : "f2" } } }
] )
这将返回与所有my_entries数组中的匹配条目一样多的文档。如果要将它们分组,则需要在管道末尾添加{$group:}
条目。