| Interface | Description |
|---|---|
| Cache<K,V> |
Cache interface provides set of methods for different cache
implementations, such as MemoryCache or SyncMemoryCache, etc. |
| CacheProvider<K,V> |
Implement this interface if you want you class to be a cache provider.
|
| Class | Description |
|---|---|
| CacheManager |
This class is the centralized storage of all registered caches.
|
| LinkedMemoryCache<K,V> |
LimitedMap implementation of the Cache interface.
|
| ListMemoryCache<V> |
ArrayList implementation of the Cache interface.
|
| MemoryCache<K,V> |
HashMap implementation of the Cache interface.
|
| SynchLinkedMemoryCache<K,V> |
The thread safe version of the LinkedMemoryCache class.
|
| SynchListMemoryCache<V> |
Thread safe version of the ListMemoryCache.
|
| SynchMemoryCache<K,V> |
ConcurrentHashMap implementation of the Cache interface.
|
Copyright © 2010-2020 Toolsverse. All Rights Reserved.