Is it ok to use mongodb embedded document to combine related fields together?
Example: a document has fields creator_id
and creator_language
, is it possible to replace them with an embedded document creator
, containing fields id
and language
without performance impact?
I haven't been able to find anything on how an embedded document is stored, except the fact that it has no collection and tied to the parent document