You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2010/12/14 18:19:50 UTC

[Couchdb Wiki] Update of "HTTP_Bulk_Document_API" by cheeze

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The "HTTP_Bulk_Document_API" page has been changed by cheeze.
http://wiki.apache.org/couchdb/HTTP_Bulk_Document_API?action=diff&rev1=9&rev2=10

--------------------------------------------------

     * By POSTing to _all_docs you can get a set of documents with arbitrary keys
  
  
- Simple exmple to fetch the keys {{{bar}}} and {{{baz}}} and include the complete document in the result set:
+ Simple example to fetch the keys {{{bar}}} and {{{baz}}} and include the complete document in the result set:
  {{{
  curl -d '{"keys":["bar","baz"]}' -X POST http://127.0.0.1:5984/foo/_all_docs?include_docs=true
  }}}