Skip to content

Instantly share code, notes, and snippets.

@mniehe
Created May 21, 2016 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mniehe/098c0914111ee330f4a2f3252d768800 to your computer and use it in GitHub Desktop.
Save mniehe/098c0914111ee330f4a2f3252d768800 to your computer and use it in GitHub Desktop.
Comments and votes per post
function(doc) {
if (doc.type == 'post') {
emit([doc._id, 0]);
} else if (doc.type == 'comment' || doc.type == 'vote') {
emit([doc.postId, 1, doc.type]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment