|
Class Summary |
| CacheFactory |
This class keeps an eye on all created caches. |
| FinalizeEvent |
Insert the type's description here. |
| LeastRecentlyUsedCache<K,V> |
This cache has a maximum number of items it remembers. |
| LifespanCache |
This cache holds items only for a specified number of seconds
accessing the item does NOT restart the counter (see TimeoutCache) |
| LossyHashMap<K,V> |
This class is a HashMap (for fast access) but uses weak references for its values,
so the garbage collecter may remove referenced values. |
| RemoveEvent |
|
| TimeoutCache |
This cache holds items only for a specified number of seconds,
but each time the item is accessed, the counter is restarted. |