此内容没有您所选择的语言版本。
3.5. Configure Expiration
In Red Hat JBoss Data Grid, expiration is configured in a manner similar to eviction.
Procedure 3.1. Configure Expiration
Add the Expiration Tag
Add the <expiration> tag to your project's <cache> tags as follows:<expiration />Set the Expiration Lifespan
Set thelifespanvalue to set the period of time (in milliseconds) an entry can remain in memory. The following is an example of this step:<expiration lifespan="1000" />Set the Maximum Idle Time
Set the time that entries are allowed to remain idle (unused) after which they are removed (in milliseconds). The default value is-1for unlimited time.<expiration lifespan="1000" max-idle="1000" />