我有带有"日期"和"组"字段的文档。这是我的观点:
byDateGroup: {
map: function(doc) {
if (doc.date && doc.group) {
emit([doc.date, doc.group], null);
}
}
}
与此等效的查询是什么:
select * from docs where group in ("group1", "group2") order by date desc
这个简单的解决方案没有出现在我的脑海中。 :(
Pankaj,将你发出的密钥的顺序切换到这个:
emit([doc.group, doc.date], doc);
然后,您可以在查询视图时传入开始键和结束键。 对要为其拉取数据的每个组执行单独的查询可能会更容易。 数据将按日期排序。
我现在正在出门的路上,但如果不清楚,当我回来时可以详细说明更多。
为什么不呢?
function(doc) {
if (doc.date && ["group1", "group2"].indexOf(doc.group) !== -1)) {
emit([doc.date, doc.group], null);
}
}
您需要一个特定的视图:
byDateGroup1Group2: {
map: function(doc) {
if (doc.date && doc.group && (doc.group === "group1" || doc.group === "group2") {
emit(doc.date, doc);
}
}
}
您使用查询descending=true
查询(大概在列表函数中)。