Package org.apache.cassandra.cache
Interface ICache<K,V>
- All Superinterfaces:
CacheSize
- All Known Implementing Classes:
CaffeineCache,SerializingCache
This is similar to the Map interface, but requires maintaining a given capacity
and does not require put or remove to return values, which lets SerializingCache
be more efficient by avoiding deserialize except on get.
-
Method Summary
Methods inherited from interface org.apache.cassandra.cache.CacheSize
capacity, setCapacity, size, weightedSize
-
Method Details
-
put
-
putIfAbsent
-
replace
-
get
-
remove
-
clear
void clear() -
keyIterator
-
hotKeyIterator
-
containsKey
-