Blog Logo
TAGS

How to Track Versions with MongoDB

Consider requirement that we have to be able to recreate/query any version of a document that ever existed in a particular collection. So we start out with: { docId: A, v: 1, color: red, locale: USA }...

Read more...

Best Versions with MongoDB

Recall our previous discussion about ways to recreate older version of a document that ever existed in a particular collection. The goal was to preserve every state for each object, but to respond to ...

Read more...