| Interface | Description |
|---|---|
| Cache<K,V> |
Cache interface.
|
| Class | Description |
|---|---|
| AbstractCacheMap<K,V> |
Default implementation of timed and size cache map.
|
| CacheValuesIterator<V> |
Values iterator for
AbstractCacheMap. |
| FIFOCache<K,V> |
FIFO (first in first out) cache.
|
| FileLFUCache |
Files LFU cache stores files content in memory to dramatically
speed up performances for frequently read files.
|
| LFUCache<K,V> |
LFU (least frequently used) cache.
|
| LRUCache<K,V> |
LRU (least recently used) cache.
|
| NoCache<K,V> |
Simple no-cache implementations of
Cache for situation when cache
needs to be quickly turned-off. |
| TimedCache<K,V> |
Timed cache.
|
Copyright © 2003-2013 Jodd Team