Skip to content

Instantly share code, notes, and snippets.

@pacoguzman
pacoguzman / DESIGN_DOCS
Created July 4, 2011 06:52
ElasticSearch and Couchdb River
# Create design documents with the filters
curl -vX PUT 'http://127.0.0.1:5984/couchdb_myapp_development/_design/Product' -d '{
"_id": "_design/Product",
"language": "javascript",
"filters": {
"product": "function(doc, req) { return doc['type'] == 'Product'; }"
}
}'
curl -vX PUT 'http://127.0.0.1:5984/couchdb_myapp_development/_design/Person' -d '{