Package com.google.gerrit.server.cache
Interface MemoryCacheFactory
-
public interface MemoryCacheFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K,V>
com.google.common.cache.LoadingCache<K,V>build(CacheDef<K,V> def, com.google.common.cache.CacheLoader<K,V> loader, CacheBackend backend)
<K,V>
com.google.common.cache.Cache<K,V>build(CacheDef<K,V> def, CacheBackend backend)
-
-
-
Method Detail
-
build
<K,V> com.google.common.cache.Cache<K,V> build(CacheDef<K,V> def, CacheBackend backend)
-
build
<K,V> com.google.common.cache.LoadingCache<K,V> build(CacheDef<K,V> def, com.google.common.cache.CacheLoader<K,V> loader, CacheBackend backend)
-
-