Package io.trino.cache


package io.trino.cache
  • Class
    Description
     
    Builder for Cache and LoadingCache instances, similar to CacheBuilder, but creating cache implementations that do not exhibit Guava issue #1881: a cache inspection with Cache.getIfPresent(Object) or Cache.get(Object, Callable) is guaranteed to return fresh state after Cache.invalidate(Object), Cache.invalidateAll(Iterable) or Cache.invalidateAll() were called.
    A Cache that does not support eviction.
    A LoadingCache that does not support eviction.
    A Cache that does not support key-based eviction.
    A LoadingCache that does not support key-based eviction.