use of org.thymeleaf.cache.StandardCacheManager in project ratpack by ratpack.
the class ThymeleafModule method provideCacheManager.
@Provides
@Singleton
StandardCacheManager provideCacheManager(Config config) {
int cacheSize = getCacheSizeSetting(config);
StandardCacheManager cacheManager = new StandardCacheManager();
cacheManager.setTemplateCacheMaxSize(cacheSize);
return cacheManager;
}
Aggregations