In my map reduce which gets a count I don’t want the document to show up in my results where the count is 0 so how can I exclude them from showing up in the results, I assume I would do it in the Finalize function but how do I delete the document where count = 0.

Can i do something like this, and how do i do it?

function Finalize(key, reduced) {

if reduced.count == 0 {
delete reduced;
}
    return reduced;
}
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Finalize cannot exclude documents from being output. You can remove all the data, save the id, but the document will be returned/recorded.

Here is the issue to watch/vote.

link|improve this answer
watched and voted, thanks. – Dorf Feb 20 at 4:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.