| Interface | Description |
|---|---|
| Cache<KEY,VALUE> |
Holds a set of key value pairs in a cache interface.
|
| Class | Description |
|---|---|
| ConcurrentLruCache<KEY,VALUE> |
ConcurrentLruCache cache.
|
| FastConcurrentReadLruLfuFifoCache<KEY,VALUE> |
Fast concurrent read cache with many options.
|
| FastReaderSingleThreadedCache<KEY,VALUE> | |
| SimpleCache<K,V> |
This supports both LRU and FIFO.
|
| SimpleConcurrentCache<K,V> |
Uses striping to allow more than one thread to operate on the cache at a time, but
due to the nature of the independent tracking of each strip the exact LRUness liveness
is only an approximation.
|
| Enum | Description |
|---|---|
| CacheType | |
| Tradeoffs |
Created by rick on 12/17/13.
|
Copyright © 2014. All rights reserved.