Welcome to the wonderful awful world of creating applications that will scale.
Go learn about sharded counters next. :)
> --
> You received this message because you are subscribed to the Google Groups "Google App Engine" group.
> To post to this group, send email to google-a...@googlegroups.com.
> To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
>
There are two methods I can think of.
1) Copy on Write Entities - persist a new copy of the entity each time you want to update it, together with the timestamp it is written. When you want to retrieve the entity, query for the latest version.
2) Use a backend instance to store the entities into the backend instance memory.
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.