0 votes
in MongoDB by
When should we normalize the data in MongoDB?

1 Answer

0 votes
by

It relies on our objectives. Normalization provides an updated effective data representation. Denormalisation makes data reading effective. Generally, we utilize embedded data models when:

When we have “contains” relationships between the entities.

When we have one-to-many relationships between the entities. In the relationships, “many”  or the child documents display in the context of the parent documents.

Generally, we use normalized data models:

When embedding results in duplication of the data yet they will not give enough read performance advantages to prevail the duplication implications.

For representing more difficult many-to-many relationships.

Related questions

+1 vote
asked Apr 17, 2021 in MongoDB by rajeshsharma
0 votes
asked Jan 6, 2023 in MongoDB by sharadyadav1986
...