java.lang.Object
org.apache.jena.atlas.lib.cache.CacheCaffeine<K,V>
- All Implemented Interfaces:
Cache<K,V>
Wrapper around a com.github.benmanes.caffeine
-
Constructor Summary
ConstructorsConstructorDescriptionCacheCaffeine(int size) CacheCaffeine(int size, BiConsumer<K, V> dropHandler) CacheCaffeine(com.github.benmanes.caffeine.cache.Cache<K, V> caffeine) -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()booleancontainsKey(K key) Does the cache contain the key?Get from cache; if not present, call theFunctionto fill the cache slot.getIfPresent(K key) Get from cache - or return null.Get from cache; if not present, call theCallableto try to fill the cache.booleanisEmpty()keys()Iterate over all keys.voidInsert into the cachevoidRemove from cache - return true if key referenced an entrylongsize()Current size of cache
-
Constructor Details
-
CacheCaffeine
public CacheCaffeine(int size) -
CacheCaffeine
-
CacheCaffeine
-
-
Method Details
-
getOrFill
Description copied from interface:CacheGet from cache; if not present, call theCallableto try to fill the cache. This operation should be atomic. -
get
Description copied from interface:CacheGet from cache; if not present, call theFunctionto fill the cache slot. This operation should be atomic. -
getIfPresent
Description copied from interface:CacheGet from cache - or return null.- Specified by:
getIfPresentin interfaceCache<K,V>
-
put
Description copied from interface:CacheInsert into the cache -
containsKey
Description copied from interface:CacheDoes the cache contain the key?- Specified by:
containsKeyin interfaceCache<K,V>
-
remove
Description copied from interface:CacheRemove from cache - return true if key referenced an entry -
keys
Description copied from interface:CacheIterate over all keys. Iterating over the keys requires the caller be thread-safe. -
isEmpty
public boolean isEmpty() -
clear
public void clear() -
size
public long size()Description copied from interface:CacheCurrent size of cache
-