Uses of Interface
com.tangosol.net.cache.CacheMap
-
Packages that use CacheMap Package Description com.oracle.coherence.caffeine Contains interfaces and classes related to the Caffeine backing map implementation.com.tangosol.coherence.transaction Contains classes related to the Coherence Transaction Framework.com.tangosol.net Contains basic cluster interfaces and factories.com.tangosol.net.cache Contains classes providing various caching strategies.com.tangosol.net.partition Contains interfaces and classes related to partitioned services.com.tangosol.util Contains various generic utilities. -
-
Uses of CacheMap in com.oracle.coherence.caffeine
Classes in com.oracle.coherence.caffeine that implement CacheMap Modifier and Type Class Description classCaffeineCacheAConfigurableCacheMapbacked by Caffeine. -
Uses of CacheMap in com.tangosol.coherence.transaction
Subinterfaces of CacheMap in com.tangosol.coherence.transaction Modifier and Type Interface Description interfaceOptimisticNamedCacheAn extension to theNamedCacheinterface that adds support for optimistic transactions. -
Uses of CacheMap in com.tangosol.net
Subinterfaces of CacheMap in com.tangosol.net Modifier and Type Interface Description interfaceNamedCache<K,V>A Map-based data-structure that manages entries across one or more processes. -
Uses of CacheMap in com.tangosol.net.cache
Subinterfaces of CacheMap in com.tangosol.net.cache Modifier and Type Interface Description interfaceConfigurableCacheMapAn extension to the CacheMap interface that supports runtime configuration and monitoring of various caching properties.Classes in com.tangosol.net.cache that implement CacheMap Modifier and Type Class Description classBlindCompactSerializationCacheBlindCompactSerializationCache is aCompactSerializationCacheextension enforcing CompactSerializationCache to operate under a blind mode.classBundlingNamedCacheBundling NamedCache implementation.classCompactSerializationCacheCompactSerializationCache is an implementation ofConfigurableCacheMapwhich is optimized for compact on-heap footprint.classContinuousQueryCache<K,V_BACK,V_FRONT>Create a materialized view of aNamedCacheusing theCoherenceContinuous Query capability.classLocalCacheA LocalCache implementation that supports the JCache API, CacheLoader and CacheStore objects.classNearCache<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.classOldCacheDeprecated.As of Coherence 3.1, useLocalCacheinsteadclassOverflowMapAn 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).classReadonlyNamedCache<K,V>A simple extension of the WrapperNamedCache implementation that shields all content mutating operations such as put(), remove(), lock() etc.classReadWriteBackingMapBacking Map implementation that provides a size-limited cache of a persistent store and supports configurable write-behind and refresh- ahead caching.classSerializationCacheA version of SerializationMap that implements an LRU policy.classVersionedBackingMapDeprecated.as of Coherence 3.2 all the functionality of this class has been superceded by the ReadWriteBackingMap implementationclassVersionedNearCacheDeprecated.as of Coherence 3.2 all the functionality of this class has been superceded by the NearCache implementationclassWrapperNamedCache<K,V>A simple implementation of NamedCache interface built as a wrapper around any Map implementation. -
Uses of CacheMap in com.tangosol.net.partition
Classes in com.tangosol.net.partition that implement CacheMap Modifier and Type Class Description classObservableSplittingBackingCacheThe ObservableSplittingBackingCache is an implementation of the ConfigurableCacheMap interface that works as an observable backing map in a partitioned system.classObservableSplittingBackingMapAn observable, cache-aware PartitionAwareBackingMap implementation.classReadWriteSplittingBackingMapA PartitionAwareBackingMap extension to the ReadWriteBackingMap. -
Uses of CacheMap in com.tangosol.util
Classes in com.tangosol.util that implement CacheMap Modifier and Type Class Description static classConverterCollections.ConverterCacheMap<FK,TK,FV,TV>A Converter CacheMap views an underlying CacheMap through a set of key and value Converters.static classConverterCollections.ConverterNamedCache<FK,TK,FV,TV>A Converter NamedCache views an underlying NamedCache through a set of key and value Converters.Methods in com.tangosol.util that return CacheMap Modifier and Type Method Description CacheMap<FK,FV>ConverterCollections.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.Methods in com.tangosol.util with parameters of type CacheMap Modifier and Type Method Description 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.Constructors in com.tangosol.util with parameters of type CacheMap Constructor Description ConverterCacheMap(CacheMap<FK,FV> map, Converter<FK,TK> convKeyUp, Converter<TK,FK> convKeyDown, Converter<FV,TV> convValUp, Converter<TV,FV> convValDown)Constructor.
-