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
1 changed files with 1 additions and 1 deletions

View File

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