What are the best use cases for object oriented databases?

We plan to use OO databases to store configuration objects. Possible options:

  • Create over 300 relational tables.
  • Create a common structure with multiple tables. We believe that this makes matching object relationships more difficult to build and maintain.
  • Use the OO database. We are testing it now.

What do you think?

+3
source share
2 answers

Read mostly (or single user); simple relationships; limited border of the object graph; non-compliance with the requirements of the restriction; and instances of the involuntary use of an object's identity favor the use of db.

0

Source: https://habr.com/ru/post/1707755/


All Articles