Created
July 22, 2011 01:07
-
-
Save chebyte/1098625 to your computer and use it in GitHub Desktop.
many views in one design document on couchdb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id": "_design/articles", | |
"language": "javascript", | |
"views": { | |
"all": { | |
"map": "function(doc) { if(doc.type == 'article') { emit(null, doc); } }" | |
}, | |
"by_author_id": { | |
"map": "function(doc) { if(doc.type == 'article') { emit([doc.author_id], doc); } }" | |
}, | |
"by_status": { | |
"map": "function(doc) { if(doc.type == 'article') { emit([doc.status], doc); } }" | |
}, | |
"titles": { | |
"map": "function(doc) { if(doc.type == 'article') { emit(null, { 'id': doc._id, 'title': doc.title }); } }" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment