Package | Description |
---|---|
freemarker.cache |
Template loading and caching.
|
Modifier and Type | Class | Description |
---|---|---|
class |
NullCacheStorage |
A cache storage that doesn't store anything.
|
class |
SoftCacheStorage |
Soft cache storage is a cache storage that uses
SoftReference
objects to hold the objects it was passed, therefore allows the garbage
collector to purge the cache when it determines that it wants to free up
memory. |
class |
StrongCacheStorage |
Strong cache storage is a cache storage that simply wraps a
Map . |