| Modifier and Type | Method and Description |
|---|---|
MetaData |
Cache.getMetaData(K key)
Retrieve the
MetaData of a cached entry if it is available. |
| Modifier and Type | Method and Description |
|---|---|
<K,M extends MetaData> |
ExpungeStrategy.getToExpungeMetaData(Set<Map.Entry<K,M>> entrySet)
Returns a collection of entries that should be expunged according to this strategy.
|
| Modifier and Type | Method and Description |
|---|---|
protected <K,M extends MetaData> |
LruExpungeStrategy.getComparator() |
protected <K,M extends MetaData> |
LfuRecyclingExpungeStrategy.getComparator() |
protected <K,M extends MetaData> |
LfuExpungeStrategy.getComparator() |
protected <K,M extends MetaData> |
LruRecyclingExpungeStrategy.getComparator() |
protected abstract <K,M extends MetaData> |
AbstractMaxSizeExpungeStrategy.getComparator() |
<K,M extends MetaData> |
NoopExpungeStrategy.getToExpungeMetaData(Set<Map.Entry<K,M>> entrySet) |
<K,M extends MetaData> |
ExpiredOnlyExpungeStrategy.getToExpungeMetaData(Set<Map.Entry<K,M>> entrySet) |
<K,M extends MetaData> |
AbstractMaxSizeExpungeStrategy.getToExpungeMetaData(Set<Map.Entry<K,M>> entrySet) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractMapBackedCache<K,V,M extends MetaData> |
class |
AbstractMapBackedCustomTtlCache<K,V,M extends MetaData> |
| Modifier and Type | Method and Description |
|---|---|
MetaData |
AbstractMapBackedCache.getMetaData(K key) |
| Constructor and Description |
|---|
KeyedMetaData(K key,
MetaData metaData) |
| Modifier and Type | Method and Description |
|---|---|
MetaData |
NoopCache.getMetaData(K key) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MetaDataComparator<K,M extends MetaData> |
| Modifier and Type | Class and Description |
|---|---|
class |
LfuComparator<K,M extends MetaData>
Sorts items by ascending count, if the count is equal the older item is picked.
|
class |
LruComparator<K,M extends MetaData>
Sorts items by ascending access time (older first), if the access time is equal the one with the
lower count is picked.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BlockMetaData |
class |
SimpleMetaData |
Copyright © 2012. All Rights Reserved.