Class CaffeineCacheImpl
- java.lang.Object
-
- io.quarkus.cache.runtime.AbstractCache
-
- io.quarkus.cache.runtime.caffeine.CaffeineCacheImpl
-
- All Implemented Interfaces:
Cache,CaffeineCache
public class CaffeineCacheImpl extends AbstractCache implements CaffeineCache
This class is an internal Quarkus cache implementation using Caffeine. Do not use it explicitly from your Quarkus application. The public methods signatures may change without prior notice.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) com.github.benmanes.caffeine.cache.AsyncCache<Object,Object>cache-
Fields inherited from class io.quarkus.cache.runtime.AbstractCache
NULL_KEYS_NOT_SUPPORTED_MSG
-
-
Constructor Summary
Constructors Constructor Description CaffeineCacheImpl(CaffeineCacheInfo cacheInfo, boolean recordStats)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K,V>
io.smallrye.mutiny.Uni<V>get(K key, Function<K,V> valueLoader)<K,V>
io.smallrye.mutiny.Uni<V>getAsync(K key, Function<K,io.smallrye.mutiny.Uni<V>> valueLoader)CaffeineCacheInfogetCacheInfo()<V> CompletableFuture<V>getIfPresent(Object key)Returns the future associated withkeyin this cache, ornullif there is no cached future forkey.StringgetName()longgetSize()io.smallrye.mutiny.Uni<Void>invalidate(Object key)io.smallrye.mutiny.Uni<Void>invalidateAll()io.smallrye.mutiny.Uni<Void>invalidateIf(Predicate<Object> predicate)Set<Object>keySet()Returns an unmodifiableSetview of the keys contained in this cache.<V> voidput(Object key, CompletableFuture<V> valueFuture)Associatesvaluewithkeyin this cache.voidsetExpireAfterAccess(Duration duration)Changes the duration, initially set from the configuration, after which each entry should be automatically removed from the cache once that duration has elapsed after the entry's creation, the most recent replacement of its value, or its last read.voidsetExpireAfterWrite(Duration duration)Changes the duration, initially set from the configuration, after which each entry should be automatically removed from the cache once that duration has elapsed after the entry's creation, or the most recent replacement of its value.voidsetMaximumSize(long maximumSize)Changes the maximum number of entries the cache may contain.-
Methods inherited from class io.quarkus.cache.runtime.AbstractCache
as, getDefaultKey
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.quarkus.cache.Cache
as, getDefaultKey
-
-
-
-
Constructor Detail
-
CaffeineCacheImpl
public CaffeineCacheImpl(CaffeineCacheInfo cacheInfo, boolean recordStats)
-
-
Method Detail
-
get
public <K,V> io.smallrye.mutiny.Uni<V> get(K key, Function<K,V> valueLoader)
-
getAsync
public <K,V> io.smallrye.mutiny.Uni<V> getAsync(K key, Function<K,io.smallrye.mutiny.Uni<V>> valueLoader)
-
getIfPresent
public <V> CompletableFuture<V> getIfPresent(Object key)
Description copied from interface:CaffeineCacheReturns the future associated withkeyin this cache, ornullif there is no cached future forkey. This method is delegating to theAsyncCache.getIfPresent(Object), while recording the cache stats if they are enabled.- Specified by:
getIfPresentin interfaceCaffeineCache- Parameters:
key- key whose associated value is to be returned- Returns:
- the future value to which the specified key is mapped, or
nullif this cache does not contain a mapping for the key - See Also:
AsyncCache.getIfPresent(Object)
-
invalidate
public io.smallrye.mutiny.Uni<Void> invalidate(Object key)
- Specified by:
invalidatein interfaceCache
-
invalidateAll
public io.smallrye.mutiny.Uni<Void> invalidateAll()
- Specified by:
invalidateAllin interfaceCache
-
invalidateIf
public io.smallrye.mutiny.Uni<Void> invalidateIf(Predicate<Object> predicate)
- Specified by:
invalidateIfin interfaceCache
-
keySet
public Set<Object> keySet()
Description copied from interface:CaffeineCacheReturns an unmodifiableSetview of the keys contained in this cache. If the cache entries are modified while an iteration over the set is in progress, the set will remain unchanged.- Specified by:
keySetin interfaceCaffeineCache- Returns:
- a set view of the keys contained in this cache
-
put
public <V> void put(Object key, CompletableFuture<V> valueFuture)
Description copied from interface:CaffeineCacheAssociatesvaluewithkeyin this cache. If the cache previously contained a value associated withkey, the old value is replaced byvalue. If the asynchronous computation fails, the entry will be automatically removed.Prefer
Cache.get(Object, Function)when using the conventional "if cached, return; otherwise create, cache and return" pattern.- Specified by:
putin interfaceCaffeineCache- Parameters:
key- key with which the specified value is to be associatedvalueFuture- value to be associated with the specified key
-
setExpireAfterWrite
public void setExpireAfterWrite(Duration duration)
Description copied from interface:CaffeineCacheChanges the duration, initially set from the configuration, after which each entry should be automatically removed from the cache once that duration has elapsed after the entry's creation, or the most recent replacement of its value.Warning: this method must not be invoked from within an atomic scope of a cache operation.
- Specified by:
setExpireAfterWritein interfaceCaffeineCache- Parameters:
duration- the length of time after which an entry should be automatically removed
-
setExpireAfterAccess
public void setExpireAfterAccess(Duration duration)
Description copied from interface:CaffeineCacheChanges the duration, initially set from the configuration, after which each entry should be automatically removed from the cache once that duration has elapsed after the entry's creation, the most recent replacement of its value, or its last read.Warning: this method must not be invoked from within an atomic scope of a cache operation.
- Specified by:
setExpireAfterAccessin interfaceCaffeineCache- Parameters:
duration- the length of time after which an entry should be automatically removed
-
setMaximumSize
public void setMaximumSize(long maximumSize)
Description copied from interface:CaffeineCacheChanges the maximum number of entries the cache may contain.Warning: this method must not be invoked from within an atomic scope of a cache operation.
- Specified by:
setMaximumSizein interfaceCaffeineCache- Parameters:
maximumSize- the maximum size of the cache
-
getCacheInfo
public CaffeineCacheInfo getCacheInfo()
-
getSize
public long getSize()
-
-