| Interface | Description |
|---|---|
| Cache<K,V> |
Cache interface.
|
| Class | Description |
|---|---|
| AbstractCacheMap<K,V> |
Default implementation of timed and size cache map.
|
| FIFOCache<K,V> |
FIFO (first in first out) cache.
|
| FileCache |
Base in-memory files cache.
|
| FileLFUCache |
Files LFU cache stores files content in memory to dramatically
speed up performances for frequently read files.
|
| FileLRUCache |
Cache of recently used 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.
|
| TypeCache<T> |
Types cache.
|
| TypeCache.Builder<A> |
Copyright © 2003-present Jodd Team