Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 map reduce 中,我不希望文档出现在计数为 0 的结果中,所以我怎样才能将它们排除在结果中,我假设我会在 Finalize 函数中执行此操作,但是如何删除count = 0的文档。
我可以做这样的事情,我该怎么做?
function Finalize(key, reduced) { if reduced.count == 0 { delete reduced; } return reduced; }
Finalize 不能将文档排除在输出之外。您可以删除所有数据,保存 id,但文档将被返回/记录。
这是观看/投票的问题。