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/28 17:51:55 UTC

[Couchdb Wiki] Trivial Update of "Document_Update_Handlers" by ZacharyZolton

Dear Wiki user,

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

The "Document_Update_Handlers" page has been changed by ZacharyZolton.
http://wiki.apache.org/couchdb/Document_Update_Handlers?action=diff&rev1=16&rev2=17

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

  <<TableOfContents()>>
  
  == Basics ==
- Update handler are functions clients can request to invoke server-side logic that will create or update a document. This feature allows a range of use cases such as providing a server-side last modified timestamp, updating individual fields in a document without first getting the latest revision, etc.
+ Update handler are functions that clients can request to invoke server-side logic that will create or update a document. This feature allows a range of use cases such as providing a server-side last modified timestamp, updating individual fields in a document without first getting the latest revision, etc.
  
  When the request to an update handler includes a document ID in the URL, the server will provide the function with the most recent version of that document. You can provide any other values needed by the update handler function via the POST/PUT entity body or query string parameters of the request.