cb372/scalacache

Caching With TTL

hinawatts opened this issue · 1 comments

Hi,

I am trying to use caffeine cache implementation, where I have a requirement to cache authentication token for TTL based on it's expiration value. I was trying to use cachingWithTTL method, but I see it's no longer there. Can someone point me how can I implement this requirement? Any examples would help.

I believe you are looking for the method:

  def put(keyParts: Any*)(value: V, ttl: Option[Duration])

where you can pass an optional ttl as the third parameter.

There is an example using memcached here in the docs, but the api for caffeine should look the same.