@Configuration(proxyBeanMethods=false)
@ConditionalOnClass(value={com.google.appengine.api.memcache.BaseMemcacheService.class,org.springframework.cache.CacheManager.class})
@Conditional(value=AppEngineProviderCondition.class)
@EnableConfigurationProperties(value=MemcachedCacheProperties.class)
@AutoConfigureAfter(name="org.springframework.cloud.autoconfigure.RefreshAutoConfiguration")
public class AppEngineMemcachedCacheAutoConfiguration
extends java.lang.Object
Auto-configuration for the Memcached cache.
Creates CacheManager when caching is enabled via EnableCaching.