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

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

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

4条回答
  •  失恋的感觉
    2021-02-04 02:29

    NoSQL DB are normally de-normalized (save copy of object data in place of object), where as OODB is normalized database with object relationships. In OODB, data is stored in object at one place and is linked (relation) to other objects.

    Due t above difference of de-normalized and normalized, both have their own pros and cons. NoSQL DBs like Mongo are fast to read but poor in writing / updating data. Due to de-normalized nature of NoSQL DBs, it hard to maintain integrity of data with that, where as OODB as Wakanda are easy to manage and have data integrity. You delete one object and all its relations are deleted automatically.

    I tried a lot to figure out some good javascript object oriented DB, but as of now could not find any other than www.wakanda.org. In case you know any, kindly share details.

提交回复
热议问题