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:
- Get document
- Save the _rev
- Apply changes
- Try to send updated document with saved _rev
- 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.