Class CaffeineCacheManager
- java.lang.Object
- org.springframework.cache.caffeine.CaffeineCacheManager
- All Implemented Interfaces:
CacheManager
public class CaffeineCacheManager extends Object implements CacheManager
CacheManagerimplementation that lazily buildsCaffeineCacheinstances for eachgetCache(java.lang.String)request. Also supports a 'static' mode where the set of cache names is pre-defined throughsetCacheNames(java.util.Collection<java.lang.String>), with no dynamic creation of further cache regions at runtime.The configuration of the underlying cache can be fine-tuned through a
Caffeinebuilder orCaffeineSpec, passed into this CacheManager throughsetCaffeine(com.github.benmanes.caffeine.cache.Caffeine<java.lang.Object, java.lang.Object>)/setCaffeineSpec(com.github.benmanes.caffeine.cache.CaffeineSpec). ACaffeineSpec-compliant expression value can also be applied via the"cacheSpecification"bean property.Requires Caffeine 2.1 or higher.
- Since:
- 4.3
- Author:
- Ben Manes, Juergen Hoeller, Stephane Nicoll
- See Also:
CaffeineCache
Constructor Summary
Constructors Constructor Description CaffeineCacheManager()Construct a dynamic CaffeineCacheManager, lazily creating cache instances as they are being requested.CaffeineCacheManager(String... cacheNames)Construct a static CaffeineCacheManager, managing caches for the specified cache names only.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected CachecreateCaffeineCache(String name)Create a new CaffeineCache instance for the specified cache name.protected com.github.benmanes.caffeine.cache.Cache<Object,Object>createNativeCaffeineCache(String name)Create a native Caffeine Cache instance for the specified cache name.CachegetCache(String name)Get the cache associated with the given name.Collection<String>getCacheNames()Get a collection of the cache names known by this manager.booleanisAllowNullValues()Return whether this cache manager accepts and convertsnullvalues for all of its caches.voidsetAllowNullValues(boolean allowNullValues)Specify whether to accept and convertnullvalues for all caches in this cache manager.voidsetCacheLoader(com.github.benmanes.caffeine.cache.CacheLoader<Object,Object> cacheLoader)Set the Caffeine CacheLoader to use for building each individualCaffeineCacheinstance, turning it into a LoadingCache.voidsetCacheNames(Collection<String> cacheNames)Specify the set of cache names for this CacheManager's 'static' mode.voidsetCacheSpecification(String cacheSpecification)Set the Caffeine cache specification String to use for building each individualCaffeineCacheinstance.voidsetCaffeine(com.github.benmanes.caffeine.cache.Caffeine<Object,Object> caffeine)Set the Caffeine to use for building each individualCaffeineCacheinstance.voidsetCaffeineSpec(com.github.benmanes.caffeine.cache.CaffeineSpec caffeineSpec)Set theCaffeineSpecto use for building each individualCaffeineCacheinstance.
Constructor Detail
CaffeineCacheManager
public CaffeineCacheManager()
Construct a dynamic CaffeineCacheManager, lazily creating cache instances as they are being requested.
CaffeineCacheManager
public CaffeineCacheManager(String... cacheNames)
Construct a static CaffeineCacheManager, managing caches for the specified cache names only.
Method Detail
setCacheNames
public void setCacheNames(Collection<String> cacheNames)
Specify the set of cache names for this CacheManager's 'static' mode.The number of caches and their names will be fixed after a call to this method, with no creation of further cache regions at runtime.
Calling this with a
nullcollection argument resets the mode to 'dynamic', allowing for further creation of caches again.
setCaffeine
public void setCaffeine(com.github.benmanes.caffeine.cache.Caffeine<Object,Object> caffeine)
Set the Caffeine to use for building each individualCaffeineCacheinstance.- See Also:
createNativeCaffeineCache(java.lang.String),Caffeine.build()
setCaffeineSpec
public void setCaffeineSpec(com.github.benmanes.caffeine.cache.CaffeineSpec caffeineSpec)
Set theCaffeineSpecto use for building each individualCaffeineCacheinstance.- See Also:
createNativeCaffeineCache(java.lang.String),Caffeine.from(CaffeineSpec)
setCacheSpecification
public void setCacheSpecification(String cacheSpecification)
Set the Caffeine cache specification String to use for building each individualCaffeineCacheinstance. The given value needs to comply with Caffeine'sCaffeineSpec(see its javadoc).- See Also:
createNativeCaffeineCache(java.lang.String),Caffeine.from(String)
setCacheLoader
public void setCacheLoader(com.github.benmanes.caffeine.cache.CacheLoader<Object,Object> cacheLoader)
Set the Caffeine CacheLoader to use for building each individualCaffeineCacheinstance, turning it into a LoadingCache.- See Also:
createNativeCaffeineCache(java.lang.String),Caffeine.build(CacheLoader),LoadingCache
setAllowNullValues
public void setAllowNullValues(boolean allowNullValues)
Specify whether to accept and convertnullvalues for all caches in this cache manager.Default is "true", despite Caffeine itself not supporting
nullvalues. An internal holder object will be used to store user-levelnulls.
isAllowNullValues
public boolean isAllowNullValues()
Return whether this cache manager accepts and convertsnullvalues for all of its caches.
getCacheNames
public Collection<String> getCacheNames()
Description copied from interface:CacheManagerGet a collection of the cache names known by this manager.- Specified by:
getCacheNamesin interfaceCacheManager- Returns:
- the names of all caches known by the cache manager
getCache
public Cache getCache(String name)
Description copied from interface:CacheManagerGet the cache associated with the given name.Note that the cache may be lazily created at runtime if the native provider supports it.
- Specified by:
getCachein interfaceCacheManager- Parameters:
name- the cache identifier (must not benull)- Returns:
- the associated cache, or
nullif such a cache does not exist or could be not created
createCaffeineCache
protected Cache createCaffeineCache(String name)
Create a new CaffeineCache instance for the specified cache name.- Parameters:
name- the name of the cache- Returns:
- the Spring CaffeineCache adapter (or a decorator thereof)
createNativeCaffeineCache
protected com.github.benmanes.caffeine.cache.Cache<Object,Object> createNativeCaffeineCache(String name)
Create a native Caffeine Cache instance for the specified cache name.- Parameters:
name- the name of the cache- Returns:
- the native Caffeine Cache instance