- Type Parameters:
K
- the key type of the cache
V
- the value type of the cache
- All Superinterfaces:
com.github.benmanes.caffeine.cache.Cache<K,V>
, DistributedCache<K,V>
, com.github.benmanes.caffeine.cache.LoadingCache<K,V>
public interface DistributedLoadingCache<K,V>
extends DistributedCache<K,V>, com.github.benmanes.caffeine.cache.LoadingCache<K,V>
Interface representing a loading cache instance. Cache entries are manually added or automatically loaded and are
stored in the cache until either invalidated or evicted.
- Author:
- Andreas Oberhoff