Domanda

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.

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top