*/
private final SynchronizedLRUMap cache;
public TimerCache(boolean monitorizeCaches, long timeout, int size) {
this.timeout = timeout;
cache = new SynchronizedLRUMap(size);
thread = new Thread(this);
thread.start();
if (monitorizeCaches)
this.cacheMonitor = new CacheMonitor(size);
}