Eviction, Expiration
Cache/Ehcache / 2015. 11. 24. 13:33
http://stackoverflow.com/questions/8838039/ehcache-does-not-remove-element-from-memory-on-eviction
Ehcache는 만료가 된 경우 바로 삭제가 되지 않는다. 삭제 시점이 즉시가 아니고 해당 캐시에 접근한 경우 삭제됨.
(Ehcache will only evict elements when putting elements and your cache is above threshold. )
캐시에 접근할 때 외에 추가로 쓰레드를 통해 일정 시간마다 해당 캐시에 evictExpiredelement()를 호출
'Cache > Ehcache' 카테고리의 다른 글
Expired Element Eviction Timing (0) | 2015.12.02 |
---|---|
ehcache does not remove Element from memory on eviction (0) | 2015.11.26 |
Using CacheManager (0) | 2015.11.24 |
Gettimg expired cache (0) | 2015.11.24 |
Ehcache (0) | 2015.10.28 |