我有两个收藏帖子和作者。除了帖子数据之外,帖子文档还包含指向作者_id的DBref 链接ID 。我的收藏看起来像这样:
帖子
"_id" : ObjectId("4fa12443d3269e98070013b4"),
"author" : {
"$ref" : "authors",
"$id" : ObjectId("4fa1242bd3269e9807000023")
},
"post" : " mi eleifend egestas. Sed pharetra, felis eget varius ultrices, mauris ipsum porta elit, a feugiat tellus lorem eu metus. In lorem.",
"post_title" : "Volutpat. Nulla facilisis. Suspendisse commodo tincidunt nibh. Phasellus nulla. Integer",
"date" : 1293803276,
"rating" : 8,
"comments" : [{
"name" : "Doris Turner",
"email" : "Hedda_Herman@.com",
"upVotes" : 81,
"downVotes" : 93,
"comment_date" : 1111395830,
"comment" : "consectetuer ipsum nunc id enim. Curabitur massa. Vestibulum accumsan neque et nunc. Quisque ornare tortor at"
}, {
"name" : "Brenda Tyler",
"upVotes" : 1,
"downVotes" : 73,
"comment_date" : 940325674,
"comment" : "cursus purus. Nullam scelerisque neque sed sem egestas blandit. Nam Nulla aliquet. Proin velit. Sed malesuada augue ut lacus. Nulla tincidunt, neque vitae semper egestas, urna justo faucibus lectus, a sollicitudin orci sem eget massa."}],
"tags" : ["tag1", "tag3"]
}
我的作者收藏看起来像这样:
作者
{
"_id" : ObjectId("4fa1242bd3269e9807000016"),
"name" : "Kristina Chung ",
"email" : "curran_ramos@google.co.id\r\n.dk",
"age" : 60,
"city" : "Copenhagen"
}
我正在尝试创建一个“关系”查询来查找:评分大于 6 且小于 9 且帖子作者年龄大于 19 且小于 25 的帖子。
我正在尝试汇总此数据,但似乎无法获得正确的数据。
第一个查询在我的帖子集合中,如下所示:
$query = array('rating' => array('$gte' => 6, '$lt' => 9), 'comments.upVotes' => array('$gt' => 2, '$lt' => 20));
我选择了 author.$id 字段,它是对作者集合的引用。
然后我将所有 $id 放在一个数组中,如下所示:
while ($cursor->hasNext()): $document = $cursor->getNext();
$authorID[] = $document['_id'];
endwhile;
然后我尝试在作者集合中使用此查询找到正确的数字
$query2 = array('age' => array('$gte' => 19, '$lt' =>100), '_id' => array('$in' => $authorID));
$cursor = q('author')->find($query2);
我尝试使用以下代码获取总数: $count = $cursor->count(); 但无论我尝试运行什么查询,我总是得到结果0。
我做错了什么,是否有可能创建这种查询,还是我必须在应用程序级别而不是数据库级别进行?
而且我很了解嵌入式文档,但我希望将这两个集合分开而不是嵌入它。
希望任何人都可以帮助我。
真诚
- Mestika