문제

There's a method Cache.set( keyString, objectToPutInCache, timeout ) and I used it. It seems the timeout doesn't get reset every time the same object is retrieved from the cache with the same key.

If there's no way to implement this, what's the best way to do sliding expiration cache in Play framework?

I'm using Java.

UPDATE:

As a workaround, I'm currently calling Cache.set() method again every time I successfully retrieve an object with the same key just to reset the expiration timeout.

도움이 되었습니까?

해결책

Play does not update on get, which is what I'd expect. Your workaround is how you solve that :)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top