what's the difference between NoSql DB and OO Db?

后端 未结 4 1032
说谎
说谎 2021-02-04 01:51

what\'s the difference between NoSql DB and OO Db?

4条回答
  •  青春惊慌失措
    2021-02-04 02:28

    There's no strict definition of "NoSQL", so the differences are largely semantic. Generally an Object Oriented Database is considered a subset (a kind of) NoSQL Database. However, in general an OO DB will still have ACID-like locking to keep consistency, while NoSQL will generally have some kind of "eventually consistent" or partial locking semantics. A NoSQL's schema may be object-based or may be key-value based (or something else), making it a more general term.

提交回复
热议问题