Uses of Class
org.infinispan.eviction.EvictionType
-
Packages that use EvictionType Package Description org.infinispan.configuration.cache Cache
configurationorg.infinispan.container.offheap org.infinispan.eviction Classes related to eviction. -
-
Uses of EvictionType in org.infinispan.configuration.cache
Fields in org.infinispan.configuration.cache with type parameters of type EvictionType Modifier and Type Field Description static AttributeDefinition<EvictionType>
MemoryConfiguration. EVICTION_TYPE
static AttributeDefinition<EvictionType>
EvictionConfiguration. TYPE
Deprecated.Methods in org.infinispan.configuration.cache that return EvictionType Modifier and Type Method Description EvictionType
MemoryConfiguration. evictionType()
The configured eviction typeEvictionType
MemoryConfigurationBuilder. evictionType()
The configured eviction type, please seeMemoryConfigurationBuilder.evictionType(EvictionType)
.EvictionType
EvictionConfiguration. type()
Deprecated.useMemoryConfiguration.evictionType()
insteadMethods in org.infinispan.configuration.cache with parameters of type EvictionType Modifier and Type Method Description MemoryConfigurationBuilder
MemoryConfigurationBuilder. evictionType(EvictionType type)
Sets the eviction type which can either be COUNT - entries will be evicted when the number of entries exceeds theMemoryConfigurationBuilder.size(long)
MEMORY - entries will be evicted when the approximate combined size of all values exceeds theMemoryConfigurationBuilder.size(long)
Cache size is guaranteed not to exceed upper limit specified by size.EvictionConfigurationBuilder
EvictionConfigurationBuilder. type(EvictionType type)
Deprecated.Sets the eviction type which can either be COUNT - entries will be evicted when the number of entries exceeds theEvictionConfigurationBuilder.size(long)
MEMORY - entries will be evicted when the approximate combined size of all values exceeds theEvictionConfigurationBuilder.size(long)
Cache size is guaranteed not to exceed upper limit specified by max entries. -
Uses of EvictionType in org.infinispan.container.offheap
Constructors in org.infinispan.container.offheap with parameters of type EvictionType Constructor Description BoundedOffHeapDataContainer(int addressCount, long maxSize, EvictionType type)
SegmentedBoundedOffHeapDataContainer(int addressCount, int numSegments, long maxSize, EvictionType type)
-
Uses of EvictionType in org.infinispan.eviction
Methods in org.infinispan.eviction that return EvictionType Modifier and Type Method Description static EvictionType
EvictionType. valueOf(String name)
Returns the enum constant of this type with the specified name.static EvictionType[]
EvictionType. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-