-2

I am using Guava cache manager and setting expireAfterAccess value. I want to know which method is invoked to expire entries from the cache?

dur
  • 15,689
  • 25
  • 79
  • 125

1 Answers1

0

You can't override the implementation of the Guava cache, if it doesn't have an extension point accessible through the CacheBuilder: all you get is an interface (either Cache or LoadingCache), the implementing classes are private.

Frank Pavageau
  • 11,477
  • 1
  • 43
  • 53