[google-appengine] Re: using memcache for caching query results

2009-03-16 Thread jonathan
That is a really good idea. I guess it is able to be applied to other similar kinds of things too, where I am applying filters and paging on those results too. (though that would get a bit more tricky) thanks Jonathan On Mar 3, 11:51 pm, Andi Albrecht albrecht.a...@googlemail.com wrote:

[google-appengine] Re: using memcache for caching query results

2009-03-16 Thread Joe Bowman
Check out the cache utility in gaeutilities. http://gaeutilities.appspot.com/cache Looking at the demo, it appears I need to update that page. Anyhow, cache uses both the datastore and the memcache. When you write a cache entry, it writes to the datastore, then to memcache. When you attempt to

[google-appengine] Re: using memcache for caching query results

2009-03-03 Thread Andi Albrecht
2009/3/3 Jonathan jricket...@gmail.com: I am using a restful interface for an ajax application and want to be able to store the results of queries in memcache, as much of this data is read much more often than it is written, but it is occasionally written. I have been trying to think of