@Configuration
@ConditionalOnMissingSpringCacheType
@ConditionalOnClass(value={net.spy.memcached.MemcachedClient.class,org.springframework.cache.CacheManager.class})
@ConditionalOnBean(value=org.springframework.cache.interceptor.CacheAspectSupport.class)
@ConditionalOnMissingBean(value={org.springframework.cache.CacheManager.class,org.springframework.cache.interceptor.CacheResolver.class})
@EnableConfigurationProperties(value=MemcachedCacheProperties.class)
public class MemcachedCacheAutoConfiguration
extends java.lang.Object
Auto-configuration for the Memcached cache.
Creates CacheManager when caching is enabled via EnableCaching.