Re: [appengine-java] Cache pages in Memcache

2010-05-04 Thread Ikai L (Google)
This is tangential to your question, but have you looked at using the cache-control header? That is, setting Cache-Control to "public; max-age=3600;". This'll cause proxy servers between App Engine and your client to cache the page. Gzip is handled by Google infrastructure, so this is something yo

[appengine-java] Cache pages in Memcache

2010-05-03 Thread Sergio Lopes
Hi Are there anyone using some kind of server-side page cache using memcached? I'm thinking in a Filter that put page results in memcache when first accessed, and then getting that result in former accesses. The idea is simple but the implementation is not. (how to get the first request response?