Caching objects in App engine is easy Cache cache;
Cache cache ;
try {
cache =
CacheManager.getInstance().getCacheFactory().createCache(Collections.emptyMap());
} catch (CacheException e) {
// ...
}
String key; // ...
int value; // ...
// Put the value into the cache.
cache.put(key, value);
I am using jsp pages, how do i cache whole pages?
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.