See: Description
| Interface | Description |
|---|---|
| ICache<K,V,X extends java.lang.Exception> |
Basic interface for a cache, which is basically a
IParameterizedFactory with additional hit/miss statistics. |
| Class | Description |
|---|---|
| BasicCache<K,V,X extends java.lang.Exception> |
Basic implementation of a cache.
|
| SynchronizedCache<K,V,X extends java.lang.Exception> |
Cache implementation that is synchronized to support multi-threaded
environments.
|
| ThreadLocalCache<K,V,X extends java.lang.Exception> |
Implementation of a cache that manages a separate backend for each thread,
thus isolating threads from each other.
|
| Enum | Description |
|---|---|
| ECacheThreadSupport |
Enumeration of strategies for supporting threads.
|