Updating a CouchDB document in nano [closed]
Asked Answered
U

1

6

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?

Ubiquitous answered 26/7, 2012 at 4:47 Comment(0)
S
9

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.

Sikorski answered 26/7, 2012 at 7:15 Comment(6)
I know that I need revision. Question is what is function with "revision" argument in nano. Right answer but on another question.Ubiquitous
It is the right answer even for your question. Just read nano's Document API documentation. There is only an inser() method which means that you have to set the proper revision on the document you want to insert.Sikorski
Can you show the code, please?Ubiquitous
It is pretty much the exact same code you already have but you just add the _rev you got when fetching the document to the updated document you want insert.Sikorski
Sorry, I realised now, that it's not argument, it's field with valueUbiquitous
This is a great answer. Further detail can be found in this blog post: How To Update A Document With Nano (The CouchDB Client for Node.js)Arianism

© 2022 - 2024 — McMap. All rights reserved.