Uses of Class
com.hazelcast.config.QueryCacheConfig
Packages that use 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
Methods in com.hazelcast.client.config that return QueryCacheConfigModifier and TypeMethodDescriptionClientConfig.getOrCreateQueryCacheConfig
(String mapName, String cacheName) ClientConfig.getOrNullQueryCacheConfig
(String mapName, String cacheName) Methods in com.hazelcast.client.config that return types with arguments of type QueryCacheConfigMethods in com.hazelcast.client.config with parameters of type QueryCacheConfigModifier and TypeMethodDescriptionClientConfig.addQueryCacheConfig
(String mapName, QueryCacheConfig queryCacheConfig) Method parameters in com.hazelcast.client.config with type arguments of type QueryCacheConfigModifier and TypeMethodDescriptionClientConfig.setQueryCacheConfigs
(Map<String, Map<String, QueryCacheConfig>> queryCacheConfigs) -
Uses of QueryCacheConfig in com.hazelcast.config
Methods in com.hazelcast.config that return QueryCacheConfigModifier 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.Methods in com.hazelcast.config that return types with arguments of type QueryCacheConfigModifier and TypeMethodDescriptionMapConfig.getQueryCacheConfigs()
Returns allQueryCacheConfig
instances defined on thisMapConfig
.Methods in com.hazelcast.config with parameters of type QueryCacheConfigModifier and TypeMethodDescriptionMapConfig.addQueryCacheConfig
(QueryCacheConfig queryCacheConfig) Adds a newQueryCacheConfig
to thisMapConfig
.Method parameters in com.hazelcast.config with type arguments of type QueryCacheConfigModifier and TypeMethodDescriptionMapConfig.setQueryCacheConfigs
(List<QueryCacheConfig> queryCacheConfigs) SetsQueryCacheConfig
instances to thisMapConfig
.Constructors in com.hazelcast.config with parameters of type QueryCacheConfig