In my ehcache configuration, I see the following:
eternal="false"
timeToIdleSeconds="0"
timeToLiveSeconds="0"
What does this mean effectively?
The documentation mentions that timeToLiveSeconds = "0" means that these checks will not be performed. Thus, does this mean that objects will be eternal, even if eternal is set to false?
source
share