Class MemoryConfigurationBuilder
java.lang.Object
org.infinispan.configuration.cache.MemoryConfigurationBuilder
- All Implemented Interfaces:
Builder<MemoryConfiguration>
,ConfigurationChildBuilder
Controls the data container for the cache.
- Author:
- William Burns
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
create()
Create the configuration beanencoding()
Deprecated, for removal: This API element is subject to removal in a future version.evictionStrategy
(EvictionStrategy strategy) Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, usewhenFull(EvictionStrategy)
instead.Deprecated, for removal: This API element is subject to removal in a future version.since 11.0, @seeevictionType(EvictionType)
evictionType
(EvictionType type) Deprecated, for removal: This API element is subject to removal in a future version.since 11.0, usemaxCount(long)
ormaxSize(String)
to define data container bounds by size or by count.protected ConfigurationBuilder
indexing()
Deprecated, for removal: This API element is subject to removal in a future version.locking()
long
maxCount()
maxCount
(long count) maxSize()
memory()
query()
read
(MemoryConfiguration template, Combine combine) Reads the configuration from an already created configuration bean into this builder.security()
boolean
simpleCache
(boolean simpleCache) sites()
long
size()
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, use eithermaxSize()
ormaxCount()
.size
(long size) Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, usemaxSize(String)
to define the size in bytes ormaxCount(long)
to define the number of entries.storage()
storage
(StorageType storageType) Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, usestorage()
instead.storageType
(StorageType storageType) Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, usestorage(StorageType)
instead.template
(boolean template) toString()
tracing()
unsafe()
void
validate()
Validate the data in this builder before building the configuration beanvoid
validate
(GlobalConfiguration globalConfig) whenFull()
whenFull
(EvictionStrategy strategy)
-
Field Details
-
builder
-
-
Method Details
-
attributes
- Specified by:
attributes
in interfaceBuilder<MemoryConfiguration>
-
legacyBuilder
Deprecated, for removal: This API element is subject to removal in a future version. -
storageType
@Deprecated(forRemoval=true, since="11.0") public MemoryConfigurationBuilder storageType(StorageType storageType) Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, usestorage(StorageType)
instead.Set theStorageType
to determine how the data is stored in the data container.- Parameters:
storageType
- the storage type of the underlying data- Returns:
- this configuration builder
-
storage
-
maxSize
-
maxSize
-
maxCount
-
maxCount
public long maxCount() -
storageType
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, usestorage()
instead.The underlying storage type for this configuration- Returns:
- the configured storage type
-
storage
-
size
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, usemaxSize(String)
to define the size in bytes ormaxCount(long)
to define the number of entries.Defines the maximum size before eviction occurs. SeeevictionType(EvictionType)
for more details on the size is interpreted. IfevictionStrategy(EvictionStrategy)
has not been invoked, this will set the strategy toEvictionStrategy.REMOVE
.- Parameters:
size
- the maximum size for the container
-
size
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, use eithermaxSize()
ormaxCount()
.The configured eviction size, please seesize(long)
.- Returns:
- the configured evicted size
-
evictionType
@Deprecated(forRemoval=true, since="11.0") public MemoryConfigurationBuilder evictionType(EvictionType type) Deprecated, for removal: This API element is subject to removal in a future version.since 11.0, usemaxCount(long)
ormaxSize(String)
to define data container bounds by size or by count.Sets the eviction type which can either be- COUNT - entries will be evicted when the number of entries exceeds the
size(long)
- MEMORY - entries will be evicted when the approximate combined size of all values exceeds the
size(long)
- Parameters:
type
-
- COUNT - entries will be evicted when the number of entries exceeds the
-
evictionType
Deprecated, for removal: This API element is subject to removal in a future version.since 11.0, @seeevictionType(EvictionType)
The configured eviction type, please seeevictionType(EvictionType)
.- Returns:
- the configured eviction type
-
evictionStrategy
@Deprecated(forRemoval=true, since="11.0") public MemoryConfigurationBuilder evictionStrategy(EvictionStrategy strategy) Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, usewhenFull(EvictionStrategy)
instead.Sets the eviction strategy which can be:- NONE - no eviction will take place
- MANUAL - no eviction will take place automatically, but user is assumed to manually call evict
- REMOVE - eviction will remove entries to make room for new entries to be inserted
- EXCEPTION - eviction will not take place, but instead an exception will be thrown to ensure container doesn't grow too large
- Parameters:
strategy
- the strategy to set- Returns:
- this
-
whenFull
-
whenFull
-
evictionStrategy
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, usewhenFull()
instead.The configured eviction strategy, please seeevictionStrategy(EvictionStrategy)
.- Returns:
- the configured eviction stategy
-
validate
public void validate()Description copied from interface:Builder
Validate the data in this builder before building the configuration bean- Specified by:
validate
in interfaceBuilder<MemoryConfiguration>
-
validate
- Specified by:
validate
in interfaceConfigurationChildBuilder
-
create
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<MemoryConfiguration>
- Returns:
-
read
Description copied from interface:Builder
Reads the configuration from an already created configuration bean into this builder. Returns an appropriate builder to allow fluent configuration- Specified by:
read
in interfaceBuilder<MemoryConfiguration>
- Parameters:
template
- the configuration from which to "clone" this config if needed.combine
- the way attributes and children of this instance and the template should be combined.
-
toString
-
aliases
- Specified by:
aliases
in interfaceConfigurationChildBuilder
-
template
- Specified by:
template
in interfaceConfigurationChildBuilder
-
simpleCache
- Specified by:
simpleCache
in interfaceConfigurationChildBuilder
-
simpleCache
public boolean simpleCache()- Specified by:
simpleCache
in interfaceConfigurationChildBuilder
-
clustering
- Specified by:
clustering
in interfaceConfigurationChildBuilder
-
encoding
- Specified by:
encoding
in interfaceConfigurationChildBuilder
-
expiration
- Specified by:
expiration
in interfaceConfigurationChildBuilder
-
query
- Specified by:
query
in interfaceConfigurationChildBuilder
-
indexing
- Specified by:
indexing
in interfaceConfigurationChildBuilder
-
tracing
- Specified by:
tracing
in interfaceConfigurationChildBuilder
-
invocationBatching
- Specified by:
invocationBatching
in interfaceConfigurationChildBuilder
-
statistics
- Specified by:
statistics
in interfaceConfigurationChildBuilder
-
persistence
- Specified by:
persistence
in interfaceConfigurationChildBuilder
-
locking
- Specified by:
locking
in interfaceConfigurationChildBuilder
-
security
- Specified by:
security
in interfaceConfigurationChildBuilder
-
transaction
- Specified by:
transaction
in interfaceConfigurationChildBuilder
-
unsafe
- Specified by:
unsafe
in interfaceConfigurationChildBuilder
-
sites
- Specified by:
sites
in interfaceConfigurationChildBuilder
-
memory
- Specified by:
memory
in interfaceConfigurationChildBuilder
-
getBuilder
-
build
- Specified by:
build
in interfaceConfigurationChildBuilder
-
whenFull()
instead.