| Package | Description |
|---|---|
| org.infinispan.configuration.cache |
Cache configuration |
| org.infinispan.container.impl |
Data containers which store cache entries.
|
| org.infinispan.container.offheap | |
| org.infinispan.eviction |
Classes related to eviction.
|
| Modifier and Type | Field and Description |
|---|---|
static AttributeDefinition<EvictionType> |
MemoryStorageConfiguration.EVICTION_TYPE
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
EvictionType |
MemoryStorageConfiguration.evictionType()
Deprecated.
|
EvictionType |
MemoryConfiguration.evictionType()
Deprecated.
Since 11.0, use
MemoryConfiguration.maxCount() or MemoryConfiguration.maxSize() to obtain either the maximum number of
entries or the maximum size of the data container. |
EvictionType |
MemoryConfigurationBuilder.evictionType()
Deprecated.
since 11.0, @see
MemoryConfigurationBuilder.evictionType(EvictionType) |
| Modifier and Type | Method and Description |
|---|---|
MemoryConfigurationBuilder |
MemoryConfigurationBuilder.evictionType(EvictionType type)
Deprecated.
since 11.0, use
MemoryConfigurationBuilder.maxCount(long) or MemoryConfigurationBuilder.maxSize(String) to define data container bounds
by size or by count. |
| Modifier and Type | Method and Description |
|---|---|
static <K,V> DefaultDataContainer<K,V> |
DefaultDataContainer.boundedDataContainer(int concurrencyLevel,
long maxEntries,
EvictionType thresholdPolicy) |
| Constructor and Description |
|---|
BoundedSegmentedDataContainer(int numSegments,
long thresholdSize,
EvictionType thresholdPolicy) |
DefaultDataContainer(int concurrencyLevel,
long thresholdSize,
EvictionType thresholdPolicy) |
| Constructor and Description |
|---|
BoundedOffHeapDataContainer(long maxSize,
EvictionType type) |
SegmentedBoundedOffHeapDataContainer(int numSegments,
long maxSize,
EvictionType type) |
| Modifier and Type | Method and Description |
|---|---|
static EvictionType |
EvictionType.valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static EvictionType[] |
EvictionType.values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2022 JBoss by Red Hat. All rights reserved.