Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Updating a CouchDB document in nano [closed]

I need to get a document, change/insert/delete some fields and put it back.

The "put" action requires the current revision of the document, but in nano I cannot find any function which takes a revision as a parameter and inserts the document back into the database.

How can I do this with nano?

like image 692
DSblizzard Avatar asked Jul 26 '12 04:07

DSblizzard


1 Answers

Note: This is the general algorithm, it is not specific to any library since nano's insert() method doesn't offer anything automated for updating documents.

Get the document, save the current revision, apply your changes and try to send the document with the saved revision number.

Make sure to handle possible 409 conflict responses which occur when a document was altered meanwhile.

In that case you should refetch the document, save the revision number, reapply your changes and then try to send it again with the new revision.

So here is the algorithm:

  1. Get document
  2. Save the _rev
  3. Apply changes
  4. Try to send updated document with saved _rev
  5. Go to step 1 in case of a 409

Checkout the CouchDB HTTP Document API's PUT section and CouchDB's Replication and Conflicts wiki page for more information on that matter. You may also find How To Update A Document With Nano (The CouchDB Client for Node.js) helpful.

like image 146
Octavian A. Damiean Avatar answered Nov 22 '22 20:11

Octavian A. Damiean