摘要:
About Class Loading Class loading, within the plethora of environments that Ehcache can be running, could be complex. But with Ehcache, all class load 阅读全文
摘要:
About Cache Eviction Algorithms A cache eviction algorithm is a way of deciding which element to evict when the cache is full. In Ehcache , the memory 阅读全文
摘要:
About Cache Extensions Cache extensions are a general-purpose mechanism to allow generic extensions to a cache. Cache extensions are tied into the cac 阅读全文
摘要:
About Cache Decorators Ehcache uses the Ehcache interface, of which Cache is an implementation. It is possible and encouraged to create Ehcache decora 阅读全文
摘要:
About Exception Handlers By default, most cache operations will propagate a runtime CacheException on failure. An interceptor, using a dynamic proxy, 阅读全文
摘要:
About Cache Event Listeners Cache listeners allow implementers to register callback methods that will be executed when a cache event occurs. Cache lis 阅读全文
摘要:
About CacheManager Event Listeners CacheManager event listeners allow implementers to register callback methods that will be executed when a CacheMana 阅读全文
摘要:
About Cache Loaders A CacheLoader is an interface that specifies load() and loadAll() methods with a variety of parameters. CacheLoaders are incorpora 阅读全文
摘要:
About Write-Through and Write-Behind Caches Write-through caching is a caching pattern where writes to the cache cause writes to an underlying resourc 阅读全文