Uses of Interface
freemarker.cache.CacheStorage

Packages that use CacheStorage
freemarker.cache Contains classes and interfaces that deal with template loading and caching. 
freemarker.template This package contains the core API's that most users will use. 
 

Uses of CacheStorage in freemarker.cache
 

Classes in freemarker.cache that implement CacheStorage
 class MruCacheStorage
          A cache storage that implements a two-level Most Recently Used cache.
 class SoftCacheStorage
          Deprecated. use MruCacheStorage instead.
 class StrongCacheStorage
          Deprecated. use MruCacheStorage instead.
 

Methods in freemarker.cache that return CacheStorage
 CacheStorage TemplateCache.getCacheStorage()
           
 

Constructors in freemarker.cache with parameters of type CacheStorage
TemplateCache(TemplateLoader loader, CacheStorage storage)
          Creates a new template cache with a custom template loader that is used to load the templates.
 

Uses of CacheStorage in freemarker.template
 

Methods in freemarker.template with parameters of type CacheStorage
 void Configuration.setCacheStorage(CacheStorage storage)