simple.util.cache |
|
Java Source File Name | Type | Comment |
Cache.java | Class | This is a LRU, Least Recently Used, Cache used to store
objects. |
CacheCleaner.java | Class | This is used to asynchronously remove objects from the cache when
those objects timeout. |
CacheList.java | Class | This is a LRU, Least Recently Used, list that will store a
limited number of objects. |
CacheReference.java | Class | This is used so that TimeCache can have items removed
when all references to it are gone. |
TimeCache.java | Class | This is a LRU, Least Recently Used, TimeCache for caching
objects. |