Spring boot 2 - memcached
0 I'm trying to create a cache using memcached with lib https://github.com/sixhours-team/memcached-spring-boot I think I have done everything but it does not work. My code is: pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> <dependency> <groupId>io.sixhours</groupId> <artifactId>memcached-spring-boot-starter</artifactId> <version>1.3.0</version> </dependency> apllication.yml memcached.cache: servers: localhost:11211 mode: static expirations: 3600 app. code @SpringBootApplication @EnableCaching public class CRMProxyApplication extends SpringBootServletInitializer { @Cacheable("couponCache") @GetMapping(path = Mappings.GET_BEST_OF_AMAZON, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity<Object> getCouponList(@RequestParam(value = "p_client_uid"...