Uses of Class
com.hazelcast.config.QueryCacheConfig
Package
Description
Contains classes related to config for com.hazelcast.client
Provides classes for configuring HazelcastInstance.
-
Uses of QueryCacheConfig in com.hazelcast.client.config
Modifier and TypeMethodDescriptionClientConfig.getOrCreateQueryCacheConfig
(String mapName, String cacheName) ClientConfig.getOrNullQueryCacheConfig
(String mapName, String cacheName) Modifier and TypeMethodDescriptionClientConfig.addQueryCacheConfig
(String mapName, QueryCacheConfig queryCacheConfig) Modifier and TypeMethodDescriptionClientConfig.setQueryCacheConfigs
(Map<String, Map<String, QueryCacheConfig>> queryCacheConfigs) -
Uses of QueryCacheConfig in com.hazelcast.config
Modifier and TypeMethodDescriptionQueryCacheConfig.addEntryListenerConfig
(EntryListenerConfig listenerConfig) AddsEntryListenerConfig
to thisQueryCacheConfig
.QueryCacheConfig.addIndexConfig
(IndexConfig indexConfig) QueryCacheConfig.setBatchSize
(int batchSize) Sets the batch size which will be used to determine number of events to be sent in a batch toQueryCache
QueryCacheConfig.setBufferSize
(int bufferSize) Sets the maximum number of events which can be stored in a buffer of partition.QueryCacheConfig.setCoalesce
(boolean coalesce) Settrue
to 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 aQueryCache
QueryCacheConfig.setEntryListenerConfigs
(List<EntryListenerConfig> listenerConfigs) QueryCacheConfig.setEvictionConfig
(EvictionConfig evictionConfig) Sets theEvictionConfig
instance for thisQueryCache
QueryCacheConfig.setIncludeValue
(boolean includeValue) Settrue
to enable value caching, otherwise setfalse
QueryCacheConfig.setIndexConfigs
(List<IndexConfig> indexConfigs) QueryCacheConfig.setInMemoryFormat
(InMemoryFormat inMemoryFormat) Sets memory format of values of entries inQueryCache
.Sets the name ofQueryCache
.QueryCacheConfig.setPopulate
(boolean populate) Settrue
to enable initial population, otherwise setfalse
.QueryCacheConfig.setPredicateConfig
(PredicateConfig predicateConfig) Sets the predicate ofQueryCache
.QueryCacheConfig.setSerializeKeys
(boolean serializeKeys) Sets if theQueryCache
key is stored in serialized format or by-reference.Modifier and TypeMethodDescriptionMapConfig.getQueryCacheConfigs()
Returns allQueryCacheConfig
instances defined on thisMapConfig
.Modifier and TypeMethodDescriptionMapConfig.addQueryCacheConfig
(QueryCacheConfig queryCacheConfig) Adds a newQueryCacheConfig
to thisMapConfig
.Modifier and TypeMethodDescriptionMapConfig.setQueryCacheConfigs
(List<QueryCacheConfig> queryCacheConfigs) SetsQueryCacheConfig
instances to thisMapConfig
.