Package | Description |
---|---|
com.hazelcast.cache.impl |
Hazelcast JSR-107 aka JCache implementation
|
com.hazelcast.cache.impl.client |
Hazelcast JSR-107 aka JCache implementation
Client Requests
|
com.hazelcast.cache.impl.nearcache |
Near cache support.
|
com.hazelcast.cache.impl.nearcache.impl |
Near cache implementations.
|
com.hazelcast.cache.impl.record |
Hazelcast JSR-107 aka JCache implementation
Internal record store
|
com.hazelcast.client.map.impl.nearcache |
Contains classes/interfaces related to com.hazelcast.client.map.impl.nearcache
|
com.hazelcast.config |
Provides classes for configuring HazelcastInstance.
|
com.hazelcast.map.impl |
Contains implementation specific classes of
com.hazelcast.map package. |
com.hazelcast.map.impl.mapstore.writebehind |
Package for processing write behind store operations.
|
com.hazelcast.map.impl.nearcache | |
com.hazelcast.map.impl.recordstore |
Modifier and Type | Method and Description |
---|---|
protected abstract CacheOperationProvider |
AbstractCacheService.createOperationProvider(String nameWithPrefix,
InMemoryFormat inMemoryFormat) |
protected CacheOperationProvider |
CacheService.createOperationProvider(String nameWithPrefix,
InMemoryFormat inMemoryFormat) |
CacheOperationProvider |
AbstractCacheService.getCacheOperationProvider(String nameWithPrefix,
InMemoryFormat inMemoryFormat) |
CacheOperationProvider |
ICacheService.getCacheOperationProvider(String nameWithPrefix,
InMemoryFormat storageType)
Creates cache operations according to the storage-type of the cache
|
Modifier and Type | Field and Description |
---|---|
protected InMemoryFormat |
AbstractCacheRequest.inMemoryFormat |
Constructor and Description |
---|
AbstractCacheRequest(String name,
InMemoryFormat inMemoryFormat) |
CacheContainsKeyRequest(String name,
Data key,
InMemoryFormat inMemoryFormat) |
CacheEntryProcessorRequest(String name,
Data key,
javax.cache.processor.EntryProcessor entryProcessor,
InMemoryFormat inMemoryFormat,
Object... arguments) |
CacheGetAndRemoveRequest(String name,
Data key,
InMemoryFormat inMemoryFormat) |
CacheGetAndReplaceRequest(String name,
Data key,
Data value,
javax.cache.expiry.ExpiryPolicy expiryPolicy,
InMemoryFormat inMemoryFormat) |
CacheGetConfigRequest(String cacheName,
String simpleName,
InMemoryFormat inMemoryFormat) |
CacheGetRequest(String name,
Data key,
javax.cache.expiry.ExpiryPolicy expiryPolicy,
InMemoryFormat inMemoryFormat) |
CacheIterateRequest(String name,
int partitionId,
int tableIndex,
int batch,
InMemoryFormat inMemoryFormat) |
CachePutAllRequest(String name,
InMemoryFormat inMemoryFormat,
List<Map.Entry<Data,Data>> entries,
javax.cache.expiry.ExpiryPolicy expiryPolicy,
int partitionId) |
CachePutIfAbsentRequest(String name,
Data key,
Data value,
javax.cache.expiry.ExpiryPolicy expiryPolicy,
InMemoryFormat inMemoryFormat) |
CachePutRequest(String name,
Data key,
Data value,
javax.cache.expiry.ExpiryPolicy expiryPolicy,
boolean get,
InMemoryFormat inMemoryFormat) |
CachePutRequest(String name,
Data key,
Data value,
javax.cache.expiry.ExpiryPolicy expiryPolicy,
InMemoryFormat inMemoryFormat) |
CachePutRequest(String name,
Data key,
Data value,
InMemoryFormat inMemoryFormat) |
CacheRemoveRequest(String name,
Data key,
Data currentValue,
InMemoryFormat inMemoryFormat) |
CacheRemoveRequest(String name,
Data key,
InMemoryFormat inMemoryFormat) |
CacheReplaceRequest(String name,
Data key,
Data currentValue,
Data value,
javax.cache.expiry.ExpiryPolicy expiryPolicy,
InMemoryFormat inMemoryFormat) |
CacheReplaceRequest(String name,
Data key,
Data value,
javax.cache.expiry.ExpiryPolicy expiryPolicy,
InMemoryFormat inMemoryFormat) |
Modifier and Type | Method and Description |
---|---|
InMemoryFormat |
NearCache.getInMemoryFormat()
Gets the
InMemoryFormat of the storage for internal records. |
Modifier and Type | Method and Description |
---|---|
InMemoryFormat |
DefaultNearCache.getInMemoryFormat() |
Modifier and Type | Field and Description |
---|---|
protected InMemoryFormat |
CacheRecordFactory.inMemoryFormat |
Constructor and Description |
---|
CacheRecordFactory(InMemoryFormat inMemoryFormat,
SerializationService serializationService) |
Modifier and Type | Method and Description |
---|---|
InMemoryFormat |
ClientHeapNearCache.getInMemoryFormat() |
Modifier and Type | Field and Description |
---|---|
static InMemoryFormat |
CacheSimpleConfig.DEFAULT_IN_MEMORY_FORMAT
Default InMemory Format.
|
static InMemoryFormat |
MapConfig.DEFAULT_IN_MEMORY_FORMAT
Default In-Memory format is binary
|
static InMemoryFormat |
RingbufferConfig.DEFAULT_IN_MEMORY_FORMAT
Default value for the InMemoryFormat.
|
static InMemoryFormat |
QueryCacheConfig.DEFAULT_IN_MEMORY_FORMAT
By default, hold values of entries in
QueryCache as binary. |
static InMemoryFormat |
ReplicatedMapConfig.DEFAULT_IN_MEMORY_FORMAT
Default value of In-memory format
|
static InMemoryFormat |
NearCacheConfig.DEFAULT_MEMORY_FORMAT
Default memory format
|
Modifier and Type | Method and Description |
---|---|
InMemoryFormat |
CacheSimpleConfig.getInMemoryFormat()
Gets the InMemory Format for this
ICache . |
InMemoryFormat |
MapConfig.getInMemoryFormat()
Returns the data type that will be used for storing records.
|
InMemoryFormat |
NearCacheConfig.getInMemoryFormat()
Gets the data type used to store entries.
|
InMemoryFormat |
CacheConfig.getInMemoryFormat()
Gets the data type that will be used to store records.
|
InMemoryFormat |
RingbufferConfig.getInMemoryFormat()
Gets the InMemoryFormat.
|
InMemoryFormat |
QueryCacheConfig.getInMemoryFormat()
Returns memory format of values of entries in
QueryCache . |
InMemoryFormat |
ReplicatedMapConfig.getInMemoryFormat()
Data type used to store entries.
|
static InMemoryFormat |
InMemoryFormat.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InMemoryFormat[] |
InMemoryFormat.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
CacheConfig<K,V> |
CacheConfigReadOnly.setInMemoryFormat(InMemoryFormat inMemoryFormat) |
CacheSimpleConfig |
CacheSimpleConfigReadOnly.setInMemoryFormat(InMemoryFormat inMemoryFormat) |
CacheSimpleConfig |
CacheSimpleConfig.setInMemoryFormat(InMemoryFormat inMemoryFormat)
Sets the InMemory Format for this
ICache . |
MapConfig |
MapConfig.setInMemoryFormat(InMemoryFormat inMemoryFormat)
Binary type that will be used for storing records.
|
NearCacheConfig |
NearCacheConfig.setInMemoryFormat(InMemoryFormat inMemoryFormat)
Sets the data type used to store entries.
|
CacheConfig<K,V> |
CacheConfig.setInMemoryFormat(InMemoryFormat inMemoryFormat)
Data type that will be used to store records in this
ICache . |
MapConfig |
MapConfigReadOnly.setInMemoryFormat(InMemoryFormat inMemoryFormat) |
RingbufferConfig |
RingbufferConfig.setInMemoryFormat(InMemoryFormat inMemoryFormat)
Sets the InMemoryFormat.
|
QueryCacheConfig |
QueryCacheConfig.setInMemoryFormat(InMemoryFormat inMemoryFormat)
Sets memory format of values of entries in
QueryCache . |
NearCacheConfig |
NearCacheConfigReadOnly.setInMemoryFormat(InMemoryFormat inMemoryFormat) |
ReplicatedMapConfig |
ReplicatedMapConfig.setInMemoryFormat(InMemoryFormat inMemoryFormat)
Data type used to store entries.
|
Constructor and Description |
---|
NearCacheConfig(int timeToLiveSeconds,
int maxSize,
String evictionPolicy,
int maxIdleSeconds,
boolean invalidateOnChange,
InMemoryFormat inMemoryFormat) |
NearCacheConfig(int timeToLiveSeconds,
int maxSize,
String evictionPolicy,
int maxIdleSeconds,
boolean invalidateOnChange,
InMemoryFormat inMemoryFormat,
EvictionConfig evictionConfig) |
Modifier and Type | Method and Description |
---|---|
static void |
MapConfigValidator.checkInMemoryFormat(InMemoryFormat inMemoryFormat)
|
static SizeEstimator |
SizeEstimators.createMapSizeEstimator(InMemoryFormat inMemoryFormat) |
Constructor and Description |
---|
WriteBehindStore(MapStoreWrapper store,
SerializationService serializationService,
long writeDelayTime,
int partitionId,
InMemoryFormat inMemoryFormat,
boolean coalesce) |
Modifier and Type | Method and Description |
---|---|
InMemoryFormat |
NearCacheImpl.getInMemoryFormat() |
Modifier and Type | Method and Description |
---|---|
Storage |
RecordStore.createStorage(RecordFactory<R> recordFactory,
InMemoryFormat memoryFormat) |
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.