| java.lang.Object org.ofbiz.minerva.pool.cache.LeastRecentlyUsedCache
LeastRecentlyUsedCache | public class LeastRecentlyUsedCache implements ObjectCache(Code) | | A Least Recently Used cache implementation. The object in the
cache that was least recently used is dropped when the cache is
full and a new request comes in. The implementation uses a linked
list (to track recentness) and a HashMap (to navigate quickly).
author: Aaron Mulder ammulder@alumni.princeton.edu |
close | public void close()(Code) | | |
setSize | public void setSize(int maxSize)(Code) | | |
|
|