Skip to content

Instantly share code, notes, and snippets.

@ada-lovecraft
Created May 29, 2013 17:29
Show Gist options
  • Save ada-lovecraft/5672114 to your computer and use it in GitHub Desktop.
Save ada-lovecraft/5672114 to your computer and use it in GitHub Desktop.
CouchBase View Sample
function (doc, meta) {
var mostRecentVersion = doc.versions[doc.versions.length -1];
emit(meta.id, {
"title": doc.title,
"byline": doc.byline,
"author": doc.author,
"tags": doc.tags,
"latest": mostRecentVersion
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment