TtlType EnumerationIBM WebSphere™ eXtreme Scale Client for .NET API Specification
IBM WebSphere™ eXtreme Scale Client for .NET Release 8.6.0.0 API Specification

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.Map
Assembly: Client.Api (in Client.Api.dll) Version: 8.6.0.0
Syntax

Members

  Member nameValueDescription
None0 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.
CreationTime1 Indicates an entry expiration time is the sum of the creation time of the entry plus the "time to live" value.
LastAccessTime2 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.
LastUpdateTime3 Indicates an entry expiration time is the sum of the last update time of the entry plus the "time to live" value
See Also