IBM WebSphere™ eXtreme Scale Client for .NET Release 8.6.0.0 API Specification
Assembly: Client.Api (in Client.Api.dll) Version: 8.6.0.0
Every grid map has an optional, built in timed based evictor that is referred to as the "time to live" evictor or TTL evictor.
Each grid map entry has an expiration time that determines how long the entry is allowed to live in the grid map.
When the expiration time is reached, the TTL evictor causes the expired entry to be evicted from the grid map.
This enum defines the TTLType value constants that determine how the the expiration time is computed
for a map entry.
Namespace: IBM.WebSphere.Caching.MapAssembly: Client.Api (in Client.Api.dll) Version: 8.6.0.0
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
None | 0 | Indicates an entry has no expiration time and is allowed to live in the BackingMap until the application explicitly removes or invalidates the entry or a user defined evictor evicts it. | |
CreationTime | 1 | Indicates an entry expiration time is the sum of the creation time of the entry plus the "time to live" value. | |
LastAccessTime | 2 | Indicates an entry expiration time is the sum of the last access time of the entry, the time the entry was updated or read, plus the "time to live" value. | |
LastUpdateTime | 3 | Indicates an entry expiration time is the sum of the last update time of the entry plus the "time to live" value |
See Also