The document is the single source of truth
Paul Hammant:
When it comes to data storage the obvious conclusion is that the backend should save something pretty close to the document that the client presents, mutates, and sends back to the server for posterity. […] Use a document store instead. When would you use a normalized DB design today? The answer to that is: only when you have other processes reading and writing to your database.
There are a few scenarios where data is always accessed in the same format and that’s where document stores excel. For the rest of the scenarios, there’ll always be a trade-off between optimizing for the most frequent access patterns vs the additional processing required to provide different perspectives on the data.
Original title and link: The document is the single source of truth (©myNoSQL)
via: http://paulhammant.com/2012/02/08/document-is-the-single-source-of-truth/