Infinispan Expiration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 15: Line 15:


If expiration is not explicitly configured or programmed via the API, the entires are by default ''immortal'' and do not have a lifespan or a maximum idle time.
If expiration is not explicitly configured or programmed via the API, the entires are by default ''immortal'' and do not have a lifespan or a maximum idle time.
The cache entries that expire are purged periodically globally, from memory and stores, by periodic runs that occur at "interval" milliseconds, by default 60,000. To disable periodic expiration process altogether, set the interval to -1. "interval" is a configuration parameter of the <expiration> configuration element.


=Lifespan=
=Lifespan=

Revision as of 02:39, 21 October 2016

External

Internal

Overview

Expiration is the cache feature that allows the user to configure a lifespan and/or maximum idle time to cache entries. The entires that exceed these times are treated as invalid and are removed from the cache.

When an entry is removed from the cache due to expiration, it is NOT passivated (like evicted entries when passivation is turned on) but simply discarded. Also unlike eviction, expired entries are removed globally - from memory, cache stores, and cluster-wide.

If expiration is not explicitly configured or programmed via the API, the entires are by default immortal and do not have a lifespan or a maximum idle time.

The cache entries that expire are purged periodically globally, from memory and stores, by periodic runs that occur at "interval" milliseconds, by default 60,000. To disable periodic expiration process altogether, set the interval to -1. "interval" is a configuration parameter of the <expiration> configuration element.

Lifespan

The time interval, in milliseconds, from when a cache entry is created and until when the entry is expired globally. -1 means never expire.

Maximum Idle Time

The time interval, in milliseconds, from when a cache entry was last "touched" (written or read) and until the entry is expired globally. -1 means the entries never expire.

Configuration

Lifespans and/or maximum idle times can be configured by adding the <expiration/> element to the cache configuration sections. For more details about expiration configuration, see:

Expiration Configuration