open class SimpleCacheManager : AbstractCacheManager
Simple cache manager working against a given collection of caches. Useful for testing or simple caching declarations.
Author
Costin Leau
Since
3.1
SimpleCacheManager()
Simple cache manager working against a given collection of caches. Useful for testing or simple caching declarations. |
open fun setCaches(caches: MutableCollection<out Cache>): Unit
Specify the collection of Cache instances to use for this CacheManager. |
open fun afterPropertiesSet(): Unit |
|
open fun getCache(name: String): Cache |
|
open fun getCacheNames(): MutableCollection<String> |
|
open fun initializeCaches(): Unit
Initialize the static configuration of caches. Triggered on startup through |