Theres one thing that I haven't understood with document databases and that's how to handle shared objects. Take this these two different objects/documents:

Email
    BelongsTo (User object)

Comment
    WrittenBy (User object)

The user is the same user in both documents.

  • Are the actual user stored in the documents or some kind of reference (as in RDBMS)
  • How are changes to the user handled (new first name etc)?
link|improve this question

feedback

1 Answer

It depends on the NoSQL implementation you use. You could do it a few ways: if you're using JCR (JackRabbit, CRX, etc) you could actually store a Reference to a user node, or you could go the relational approach and store a user node's address.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.