Make sure we initialize big enough if s.o. chooses small values

This commit is contained in:
Rene Treffer 2014-06-13 17:54:54 +02:00
parent 8e848f7afd
commit 028700efe0

View file

@ -48,7 +48,7 @@ public class LRUCache implements DNSCache {
this.capacity = capacity; this.capacity = capacity;
this.maxTTL = maxTTL; this.maxTTL = maxTTL;
backend = new LinkedHashMap<Question,DNSMessage>( backend = new LinkedHashMap<Question,DNSMessage>(
Math.min(capacity, 11), 0.75f, true) Math.min(capacity + (capacity + 3) / 4 + 2, 11), 0.75f, true)
{ {
@Override @Override
protected boolean removeEldestEntry( protected boolean removeEldestEntry(