Uses of Interface
com.tangosol.net.cache.CacheMap
Package
Description
Contains interfaces and classes related to the Caffeine backing map implementation.
Contains basic cluster interfaces and factories.
Contains classes providing various caching strategies.
Contains interfaces and classes related to partitioned services.
Contains various generic utilities.
-
Uses of CacheMap in com.oracle.coherence.caffeine
-
Uses of CacheMap in com.tangosol.net
Modifier and TypeInterfaceDescriptioninterface
NamedCache<K,
V> A Map-based data-structure that manages entries across one or more processes. -
Uses of CacheMap in com.tangosol.net.cache
Modifier and TypeInterfaceDescriptioninterface
An extension to the CacheMap interface that supports runtime configuration and monitoring of various caching properties.Modifier and TypeClassDescriptionclass
Bundling NamedCache implementation.class
ContinuousQueryCache<K,
V_BACK, V_FRONT> Create a materialized view of aNamedCache
using theCoherence
Continuous Query capability.class
A LocalCache implementation that supports the JCache API, CacheLoader and CacheStore objects.class
NearCache<K,
V> A "near cache" is a CachingMap whose front map is a size-limited and/or auto-expiring local cache, and whose back map is a distributed cache.class
An Observable Map implementation that wraps two maps - a front map (assumed to be fast but limited in its maximum size) and a back map (assumed to be slower but much less limited in its maximum size).class
ReadonlyNamedCache<K,
V> A simple extension of the WrapperNamedCache implementation that shields all content mutating operations such as put(), remove(), lock() etc.class
Backing Map implementation that provides a size-limited cache of a persistent store and supports configurable write-behind and refresh- ahead caching.class
A version of SerializationMap that implements an LRU policy.class
Deprecated.as of Coherence 3.2 all the functionality of this class has been superceded by the ReadWriteBackingMap implementationclass
Deprecated.as of Coherence 3.2 all the functionality of this class has been superceded by the NearCache implementationclass
WrapperNamedCache<K,
V> A simple implementation of NamedCache interface built as a wrapper around any Map implementation. -
Uses of CacheMap in com.tangosol.net.partition
Modifier and TypeClassDescriptionclass
The ObservableSplittingBackingCache is an implementation of the ConfigurableCacheMap interface that works as an observable backing map in a partitioned system.class
An observable, cache-aware PartitionAwareBackingMap implementation.class
A PartitionAwareBackingMap extension to the ReadWriteBackingMap. -
Uses of CacheMap in com.tangosol.util
Modifier and TypeClassDescriptionstatic class
ConverterCollections.ConverterCacheMap<FK,
TK, FV, TV> A Converter CacheMap views an underlying CacheMap through a set of key and value Converters.static class
ConverterCollections.ConverterNamedCache<FK,
TK, FV, TV> A Converter NamedCache views an underlying NamedCache through a set of key and value Converters.Modifier and TypeMethodDescriptionConverterCollections.ConverterCacheMap.getCacheMap()
Return the underlying CacheMap.static <FK,
TK, FV, TV>
CacheMap<TK, TV> ConverterCollections.getCacheMap
(CacheMap<FK, FV> map, Converter<FK, TK> convKeyUp, Converter<TK, FK> convKeyDown, Converter<FV, TV> convValUp, Converter<TV, FV> convValDown) Returns a Converter instance of CacheMap.