public class QueryCacheConfig extends Object implements IdentifiedDataSerializable
QueryCache.| Modifier and Type | Field and Description | 
|---|---|
| static int | DEFAULT_BATCH_SIZEBy default, after reaching this minimum size, node immediately sends buffered events to  QueryCache. | 
| static int | DEFAULT_BUFFER_SIZEBy default, only buffer last  DEFAULT_BUFFER_SIZEevents fired from a partition. | 
| static boolean | DEFAULT_COALESCEDefault value of coalesce property. | 
| static int | DEFAULT_DELAY_SECONDSDefault value of delay seconds which an event wait in the buffer of a node, before sending to  QueryCache. | 
| static InMemoryFormat | DEFAULT_IN_MEMORY_FORMATBy default, hold values of entries in  QueryCacheas binary. | 
| static boolean | DEFAULT_INCLUDE_VALUEBy default, also cache values of entries besides keys. | 
| static boolean | DEFAULT_POPULATEBy default, execute an initial population query prior to creation of the  QueryCache. | 
| Constructor and Description | 
|---|
| QueryCacheConfig() | 
| QueryCacheConfig(QueryCacheConfig other) | 
| QueryCacheConfig(String name) | 
| Modifier and Type | Method and Description | 
|---|---|
| QueryCacheConfig | addEntryListenerConfig(EntryListenerConfig listenerConfig)Adds  EntryListenerConfigto thisQueryCacheConfig. | 
| QueryCacheConfig | addIndexConfig(IndexConfig indexConfig) | 
| boolean | equals(Object o) | 
| int | getBatchSize()After reaching this size, node sends buffered events to  QueryCache. | 
| int | getBufferSize()Returns the maximum number of events which can be stored in a buffer of partition. | 
| int | getClassId()Returns type identifier for this class. | 
| int | getDelaySeconds()Returns the minimum number of delay seconds which an event waits in the buffer of node
 before sending to a  QueryCache | 
| List<EntryListenerConfig> | getEntryListenerConfigs() | 
| EvictionConfig | getEvictionConfig()Returns  EvictionConfiginstance for thisQueryCache | 
| int | getFactoryId()Returns DataSerializableFactory factory ID for this class. | 
| List<IndexConfig> | getIndexConfigs() | 
| InMemoryFormat | getInMemoryFormat()Returns memory format of values of entries in  QueryCache. | 
| String | getName()Returns the name of  QueryCache. | 
| PredicateConfig | getPredicateConfig()Returns the predicate of  QueryCache. | 
| int | hashCode() | 
| boolean | isCoalesce()Returns  trueif coalescing is is enabled, otherwise returnsfalse. | 
| boolean | isIncludeValue()Returns  trueif value caching enabled, otherwise returnsfalse. | 
| boolean | isPopulate()Returns  trueif initial population ofQueryCacheis enabled, otherwise returnsfalse. | 
| void | readData(ObjectDataInput in)Reads fields from the input stream | 
| QueryCacheConfig | setBatchSize(int batchSize)Sets the batch size which will be used to determine number of events to be sent in a batch to  QueryCache | 
| QueryCacheConfig | setBufferSize(int bufferSize)Sets the maximum number of events which can be stored in a buffer of partition. | 
| QueryCacheConfig | setCoalesce(boolean coalesce)Set  trueto enable coalescing, otherwise setfalse. | 
| QueryCacheConfig | setDelaySeconds(int delaySeconds)Sets the minimum number of delay seconds which an event waits in the buffer of node
 before sending to a  QueryCache | 
| QueryCacheConfig | setEntryListenerConfigs(List<EntryListenerConfig> listenerConfigs) | 
| QueryCacheConfig | setEvictionConfig(EvictionConfig evictionConfig)Sets the  EvictionConfiginstance for thisQueryCache | 
| QueryCacheConfig | setIncludeValue(boolean includeValue)Set  trueto enable value caching, otherwise setfalse | 
| QueryCacheConfig | setIndexConfigs(List<IndexConfig> indexConfigs) | 
| QueryCacheConfig | setInMemoryFormat(InMemoryFormat inMemoryFormat)Sets memory format of values of entries in  QueryCache. | 
| QueryCacheConfig | setName(String name)Sets the name of  QueryCache. | 
| QueryCacheConfig | setPopulate(boolean populate)Set  trueto enable initial population, otherwise setfalse. | 
| QueryCacheConfig | setPredicateConfig(PredicateConfig predicateConfig)Sets the predicate of  QueryCache. | 
| String | toString() | 
| void | writeData(ObjectDataOutput out)Writes object fields to output stream | 
public static final int DEFAULT_BATCH_SIZE
QueryCache.public static final int DEFAULT_BUFFER_SIZE
DEFAULT_BUFFER_SIZE events fired from a partition.public static final int DEFAULT_DELAY_SECONDS
QueryCache.public static final boolean DEFAULT_INCLUDE_VALUE
public static final boolean DEFAULT_POPULATE
QueryCache.public static final boolean DEFAULT_COALESCE
public static final InMemoryFormat DEFAULT_IN_MEMORY_FORMAT
QueryCache as binary.public QueryCacheConfig()
public QueryCacheConfig(String name)
public QueryCacheConfig(QueryCacheConfig other)
public String getName()
QueryCache.QueryCachepublic QueryCacheConfig setName(String name)
QueryCache.name - the name of QueryCacheQueryCacheConfig instancepublic PredicateConfig getPredicateConfig()
QueryCache.QueryCachepublic QueryCacheConfig setPredicateConfig(PredicateConfig predicateConfig)
QueryCache.predicateConfig - config for predicateQueryCacheConfig instancepublic int getBatchSize()
QueryCache.public QueryCacheConfig setBatchSize(int batchSize)
QueryCachebatchSize - the batch sizeQueryCacheConfig instancepublic int getBufferSize()
public QueryCacheConfig setBufferSize(int bufferSize)
bufferSize - the buffer sizeQueryCacheConfig instancepublic int getDelaySeconds()
QueryCachepublic QueryCacheConfig setDelaySeconds(int delaySeconds)
QueryCachedelaySeconds - the delay secondsQueryCacheConfig instancepublic InMemoryFormat getInMemoryFormat()
QueryCache.
 Default value is binary.
QueryCachepublic QueryCacheConfig setInMemoryFormat(InMemoryFormat inMemoryFormat)
QueryCache.
 Default value is binary.
inMemoryFormat - the memory formatQueryCacheConfig instancepublic boolean isIncludeValue()
true if value caching enabled, otherwise returns falsepublic QueryCacheConfig setIncludeValue(boolean includeValue)
includeValue - Set true if value caching is enabled, otherwise set falseQueryCacheConfig instancepublic boolean isPopulate()
true if initial population of QueryCache is enabled, otherwise returns false.
 Default value is true.
true if initial population of QueryCache is enabled, otherwise returns falsepublic QueryCacheConfig setPopulate(boolean populate)
populate - set true to enable initial population, otherwise set falseQueryCacheConfig instancepublic boolean isCoalesce()
true if coalescing is is enabled, otherwise returns falsesetCoalesce(boolean)public QueryCacheConfig setCoalesce(boolean coalesce)
true to enable coalescing, otherwise set false.
 This setting is only valid if QueryCacheConfig#delaySeconds is greater than 0.
 Default value is false.
coalesce - set true to enable, otherwise set falsepublic EvictionConfig getEvictionConfig()
EvictionConfig instance for this QueryCacheEvictionConfig instance for this QueryCachepublic QueryCacheConfig setEvictionConfig(EvictionConfig evictionConfig)
EvictionConfig instance for this QueryCacheevictionConfig - the EvictionConfig instance for eviction configuration to setQueryCacheConfig instancepublic QueryCacheConfig addEntryListenerConfig(EntryListenerConfig listenerConfig)
EntryListenerConfig to this QueryCacheConfig.listenerConfig - the EntryListenerConfig to addQueryCacheConfig instancepublic List<EntryListenerConfig> getEntryListenerConfigs()
public QueryCacheConfig setEntryListenerConfigs(List<EntryListenerConfig> listenerConfigs)
public QueryCacheConfig addIndexConfig(IndexConfig indexConfig)
public List<IndexConfig> getIndexConfigs()
public QueryCacheConfig setIndexConfigs(List<IndexConfig> indexConfigs)
public int getFactoryId()
IdentifiedDataSerializablegetFactoryId in interface IdentifiedDataSerializablepublic int getClassId()
IdentifiedDataSerializablegetClassId in interface IdentifiedDataSerializablepublic void writeData(ObjectDataOutput out) throws IOException
DataSerializablewriteData in interface DataSerializableout - outputIOException - if an I/O error occurs. In particular,
                     an IOException may be thrown if the
                     output stream has been closed.public void readData(ObjectDataInput in) throws IOException
DataSerializablereadData in interface DataSerializablein - inputIOException - if an I/O error occurs. In particular,
                     an IOException may be thrown if the
                     input stream has been closed.Copyright © 2021 Hazelcast, Inc.. All rights reserved.