1 25 package com.mysql.jdbc.util; 26 27 import java.util.LinkedHashMap ; 28 import java.util.Map.Entry; 29 30 34 public class LRUCache extends LinkedHashMap { 35 protected int maxElements; 36 37 public LRUCache(int maxSize) { 38 super(maxSize); 39 this.maxElements = maxSize; 40 } 41 42 47 protected boolean removeEldestEntry(Entry eldest) { 48 return (size() > this.maxElements); 49 } 50 } 51 | Popular Tags |