Interface | Description |
---|---|
DataCache<T extends Serializable> |
A very thin wrapper around key value storage.
|
TupleDataCache<K,M extends Serializable,V extends Serializable> |
Versatile data cache interface that allows for parametrized types for the key, the metadata and the raw data value
of an entry.
|
TupleDataCache.DataEntry<K,M,V> |
A data cache entry defined as a tuple consisting of key, metadata, and value fields.
|
Class | Description |
---|---|
HashDataCache<T extends Serializable> |
DataCache using hashed keys to reduce the key length for the provided underlying cache.
|
HashDataCache.Pair<K,V> |
Key/Value pair.
|
MemDataCache<T extends Serializable> |
MemCached client implementation of DataCache.
|
MemTupleDataCache<T extends Serializable,V extends Serializable> |
Memcached client implementation of TupleDataCache.
|
MemTupleDataCache.DataEntry<T extends Serializable,V extends Serializable> |
Memcached implementation of the data cache entry of the tuple data cache.
|
StubDataCache<T extends Serializable> |
Dummy Cache implementation.
|
Copyright © 2016–2018 Yahoo! Inc.. All rights reserved.