Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用不同的应用程序连接到 Cloudant 上的同一个数据库。只有一个应用程序将写入数据库,而另一个将是只读的。
这样做可以吗?
是的!完全可以。
正如 Kim 所提到的,当不同的应用程序/客户端尝试更新同一个文档时,唯一需要担心的是多个异步连接。发生这种情况时,Cloudant 将创建一个冲突,存储这两个更新,以便您找出哪个是正确的。
查看CouchDB 中的冲突管理以了解为什么会发生这种情况以及如何处理它,以及有关冲突的Cloudant 文档以了解检查冲突的方法。