I'm storing an Entity A in my datastore on appengine. A has an id of type Long. I'd like to keep a history of all changes made to A's fields. What are the best practices to doing this type of version ing on entities? I'd prefer a solution that works well with subclasses of A and is as automatic as possible.

Thanks!

link|improve this question

73% accept rate
Java or Python? If Java, what data access framework are you using? – Nick Johnson Jun 6 '11 at 0:24
feedback

2 Answers

We are doing something similar for one of our AppEngine apps. The only efficient way we found was, have an Entity B that are your versions, and Entity A keeps a list of keys.

We then use ETags in our REST services to identify which version our client gets a copy of.

link|improve this answer
how do you query against the most recent version of all A's (from my original example) – aloo Jun 5 '11 at 1:01
We keep a second property that links to the most recent version to avoid query times. – Devraj Jun 5 '11 at 1:49
feedback

You could create a linked list of entities, where each entity has two references: one to its previous version and one to the next version. You have to maintain those references yourself, of course. The most recent version of an entity will be the one without a reference to a next version (or an empty/null reference).

Depending on your use case you might also want to look at ways to only store the differences between two version of an entity (if changes are small and entities are large).

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.