Expiry time @cacheable spring boot
I use life hacking like this: @Configuration @EnableCaching @EnableScheduling public class CachingConfig { public static final String GAMES = “GAMES”; @Bean public CacheManager cacheManager() { ConcurrentMapCacheManager cacheManager = new ConcurrentMapCacheManager(GAMES); return cacheManager; } @CacheEvict(allEntries = true, value = {GAMES}) @Scheduled(fixedDelay = 10 * 60 * 1000 , initialDelay = 500) public void reportCacheEvict() { System.out.println(“Flush … Read more