Skip to content

Instantly share code, notes, and snippets.

@arunthampi
Created August 31, 2009 20:39
Show Gist options
  • Save arunthampi/178696 to your computer and use it in GitHub Desktop.
Save arunthampi/178696 to your computer and use it in GitHub Desktop.
function(doc) {
// This view gets all threads and its associated replies
if(doc.type == 'thread') {
emit([doc._id, doc.time_created], doc);
} else if(doc.type == 'reply') {
emit([doc.thread_id, doc.time_created], doc);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment