Add caching support for Caffeine

Issue: SPR-13690
This commit is contained in:
Ben Manes
2015-11-14 21:44:45 -08:00
committed by Stephane Nicoll
parent 967ef73765
commit 13aabeef37
7 changed files with 606 additions and 1 deletions

View File

@@ -35,7 +35,8 @@ import org.springframework.cache.CacheManager;
* <p>Note: This is by no means a sophisticated CacheManager; it comes with no
* cache configuration options. However, it may be useful for testing or simple
* caching scenarios. For advanced local caching needs, consider
* {@link org.springframework.cache.guava.GuavaCacheManager} or
* {@link com.github.benmanes.caffeine.cache.CaffeineCacheManager},
* {@link org.springframework.cache.guava.GuavaCacheManager}, or
* {@link org.springframework.cache.ehcache.EhCacheCacheManager}.
*
* @author Juergen Hoeller