CouchDB Design Doc w/ Rewrite Revision 366366643833 (Fri Aug 19 2011 at 01:19) - Diff Link to this snippet: https://friendpaste.com/3gbGd7XOFD8B0FMzeaskvo Embed: manni perldoc borland colorful default murphy trac fruity autumn bw emacs pastie friendly Show line numbers Wrap lines 1234567891011121314151617181920212223242526272829{ "_id": "_design/foo", "_rev": "4-4735bc15354950518380a406775ba995", "language": "javascript", "views": { "recent_posts": { "map": "function(doc) { emit([doc.author, doc.date], doc.body); }" } }, "rewrites": [ { "from": ":user_name/recent_posts", "to": "_view/recent_posts", "method": "GET", "query": { "descending": true, "limit": 20, "startkey": [ ":user_name", { } ], "endkey": [ ":user_name" ] } } ]}