Skip to content

Instantly share code, notes, and snippets.

@MRdNk
Created April 6, 2015 18:54
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 MRdNk/b036da40d6ce1640c4cb to your computer and use it in GitHub Desktop.
Save MRdNk/b036da40d6ce1640c4cb to your computer and use it in GitHub Desktop.

map:

function (doc) {
  if (doc.type == 'game' && doc.state == 'closed') {
    emit(['winner', doc.winner, doc.loser], 1);
  }
}

reduce:

function (keys, values) {
  return sum(values)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment