How to properly increment a counter on Google App Engine
code.google.com
How to properly increment a counter on Google App Engine
1–4 of 4 posts
Re: How to properly increment a counter on Google App Engine
#2You can also use the newish Appengine feature for Task Queues (http://code.google.com/appengine/docs/python/taskqueue/)
Re: How to properly increment a counter on Google App Engine
#3I would suggest looking at this implementation:
http://appengine-cookbook.appspot.com/recipe/high-concurrenc...
My current counter system uses a single datastore entity per counter and uses the new CapabilitySet API to check if memcache will go offline in near future.
Re: How to properly increment a counter on Google App Engine
#4Reading this makes it sound as if implementing trivial things that would be "easy" in traditional environments would be a total pain in the ass in GAE.