Skip to content

Instantly share code, notes, and snippets.

@craigw
Created July 20, 2009 19:36
Show Gist options
  • Save craigw/150805 to your computer and use it in GitHub Desktop.
Save craigw/150805 to your computer and use it in GitHub Desktop.
{
"_id": "_design/articles",
"_rev": "3752119467",
"language": "javascript",
"views": {
"by_author_id_and_status_and_posted_at": {
"map": "function(doc) { if(doc.type == 'article') { emit([doc.author_id, doc.status, doc.posted_at], doc); } }"
}
// other view omitted for brevity
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment