I have the feeling that the problem is due to the use of the @Cached annotation. In fact if you cache the value manually it works, but if you use the annotation (like described in the doc by the way- it doesn't seem to work.
The following piece of code can demonstrate it easily:
@Cached(key="page1")
public static Result page1() {
java.util.Date d = Calendar.getInstance().getTime();
return ok(page.render(d.toString()));
}
public static Result page2() {
Result result = (Result) Cache.get("page2");
if ( result == null ) {
java.util.Date d = Calendar.getInstance().getTime();
result = ok(page.render(d.toString()));
Cache.set("page2", result);
}
return result;
}
With the following page
@(date: String)
@date
And routes
GET /page1 controllers.Application.page1()
GET /page2 controllers.Application.page2()
If you go to http://localhost:9000/page1 the date will change at every calls whereas it will be effectively be cached if you use http://localhost:9000/page2
It's some kind of workaround but it does the job.
Regarding your first question "What if the content changes? Does play automatically update the cache?", I think it's not the case and that you have to manually remove the entry from the cache (if you don't want to wait for the expiration date). For example:
- You put a value in the cache with an expiration time of 10
minutes
- Another business call makes the value in the cache obsolete and you
want the user to be immediately informed so you have to
remove the value from the cache immediately
- Next time the value won't be in the cache and will be recomputed
with fresh data
It seems that the remove from cache will only be available on version 2.1 (ticket here) and that the workaround is to put something in the cache with the same key and a 1 second expiration.
play runand notplay start? – i.am.michiel Aug 31 '12 at 9:24