Skip to content

Instantly share code, notes, and snippets.

@crtr0
Created August 17, 2012 20:58
Show Gist options
  • Save crtr0/3382595 to your computer and use it in GitHub Desktop.
Save crtr0/3382595 to your computer and use it in GitHub Desktop.
CouchDB views for events
{
"_id": "_design/event",
"views": {
"byShortname": {
"map": "function (doc) { if (doc.shortname) { emit(doc.shortname, doc) } } "
},
"byPhonenumber": {
"map": "function (doc) { if (doc.phonenumber) { emit(doc.phonenumber, doc) } } "
},
"all": {
"map": "function (doc) { if (doc.name) emit(doc.name, doc); }"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment