Pros/cons of document-based databases vs. relational databases

后端 未结 6 1438
温柔的废话
温柔的废话 2020-11-28 18:29

I\'ve been trying to see if I can accomplish some requirements with a document based database, in this case CouchDB. Two generic requirements:

  • CRUD of entit
6条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 19:14

    Re CRUD: the whole REST paradigm maps directly to CRUD (or vice versa). So if you know that you can model your requirements with resources (identifiable via URIs) and a basic set of operations (namely CRUD), you may be very near to a REST-based system, which quite a few document-oriented systems provide out of the box.

提交回复
热议问题