在我的应用程序中,我使用couchdb进行存储。我想执行更新操作,其中_rev值必须更改。所以请帮助我在java程序中做的事情。
答案 0 :(得分:0)
用于阅读,修改和保存文档的代码是:
Document doc = db.getDocument("documentid1234");
doc.put("foo","bar");
db.saveDocument(doc);
doc
对象将包含_rev
来自使用getDocument()
电话阅读文档时的{{1}}。
你没有生成_rev值,沙发没有。