Skip to content

Instantly share code, notes, and snippets.

@ludo1026
Last active December 31, 2015 05:49
Show Gist options
  • Save ludo1026/7943919 to your computer and use it in GitHub Desktop.
Save ludo1026/7943919 to your computer and use it in GitHub Desktop.
Couchbase - Search - Function map to get all books
function (doc, meta) {
if(meta.id.indexOf('book_') == 0) {
emit(parseInt(doc.date.substring(0,4)),[doc.author,doc.title]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment