- activated the dns miss cache

- added a cache-control for cache miss flush to the dns miss cache
- better naming of cache variables to distinguish hit- and miss- cache

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3015 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent eb20ec3837
commit 73c63578ad

@ -127,14 +127,16 @@ public final class httpc {
// the dns cache // the dns cache
private static final Map nameCacheHit = Collections.synchronizedMap(new HashMap()); // a not-synchronized map resulted in deadlocks private static final Map nameCacheHit = Collections.synchronizedMap(new HashMap()); // a not-synchronized map resulted in deadlocks
private static final kelondroMScoreCluster nameCacheAges = new kelondroMScoreCluster(); private static final Set nameCacheMiss = Collections.synchronizedSet(new HashSet());
private static final kelondroMScoreCluster nameCacheHitAges = new kelondroMScoreCluster();
private static final kelondroMScoreCluster nameCacheMissAges = new kelondroMScoreCluster();
private static final long startTime = System.currentTimeMillis(); private static final long startTime = System.currentTimeMillis();
private static final int maxNameCacheAge = 24 * 60 * 60; // 24 hours in minutes private static final int maxNameCacheAge = 24 * 60 * 60; // 24 hours in minutes
private static final int maxNameCacheSize = 5000; private static final int maxNameCacheHitSize = 3000;
private static final int maxNameCacheMissSize = 3000;
public static final List nameCacheNoCachingPatterns = Collections.synchronizedList(new LinkedList()); public static final List nameCacheNoCachingPatterns = Collections.synchronizedList(new LinkedList());
private static final Set nameCacheNoCachingList = Collections.synchronizedSet(new HashSet()); private static final Set nameCacheNoCachingList = Collections.synchronizedSet(new HashSet());
//private static HashSet nameCacheMiss = new HashSet();
/** /**
* A Object Pool containing all pooled httpc-objects. * A Object Pool containing all pooled httpc-objects.
* @see httpcPool * @see httpcPool
@ -428,8 +430,8 @@ public final class httpc {
InetAddress ip = (InetAddress) nameCacheHit.get(host); InetAddress ip = (InetAddress) nameCacheHit.get(host);
if (ip != null) return ip; if (ip != null) return ip;
// if (nameCacheMiss.contains(host)) return null; if (nameCacheMiss.contains(host)) return null;
try { try {
boolean doCaching = true; boolean doCaching = true;
ip = InetAddress.getByName(host); ip = InetAddress.getByName(host);
if ( if (
@ -458,12 +460,13 @@ public final class httpc {
// add new entries // add new entries
synchronized (nameCacheHit) { synchronized (nameCacheHit) {
nameCacheHit.put(ip.getHostName(), ip); nameCacheHit.put(ip.getHostName(), ip);
nameCacheAges.setScore(ip.getHostName(), intTime(System.currentTimeMillis())); nameCacheHitAges.setScore(ip.getHostName(), intTime(System.currentTimeMillis()));
} }
} }
return ip; return ip;
} catch (UnknownHostException e) { } catch (UnknownHostException e) {
//nameCacheMiss.add(host); nameCacheMiss.add(host);
nameCacheMissAges.setScore(host, intTime(System.currentTimeMillis()));
} }
return null; return null;
} }
@ -499,6 +502,10 @@ public final class httpc {
return nameCacheHit.size(); return nameCacheHit.size();
} }
public static int nameCacheMissSize() {
return nameCacheMiss.size();
}
/** /**
* Returns the number of entries in the nameCacheNoCachingList list * Returns the number of entries in the nameCacheNoCachingList list
* *
@ -526,15 +533,26 @@ public final class httpc {
int size; int size;
String k; String k;
synchronized (nameCacheHit) { synchronized (nameCacheHit) {
size = nameCacheAges.size(); size = nameCacheHitAges.size();
while ((size > 0) && while ((size > 0) &&
(size > maxNameCacheSize) || (nameCacheAges.getMinScore() < cutofftime)) { (size > maxNameCacheHitSize) || (nameCacheHitAges.getMinScore() < cutofftime)) {
k = (String) nameCacheAges.getMinObject(); k = (String) nameCacheHitAges.getMinObject();
nameCacheHit.remove(k); nameCacheHit.remove(k);
nameCacheAges.deleteScore(k); nameCacheHitAges.deleteScore(k);
size--; // size = nameCacheAges.size(); size--; // size = nameCacheAges.size();
} }
} }
synchronized (nameCacheMiss) {
size = nameCacheMissAges.size();
while ((size > 0) &&
(size > maxNameCacheMissSize) || (nameCacheMissAges.getMinScore() < cutofftime)) {
k = (String) nameCacheMissAges.getMinObject();
nameCacheMiss.remove(k);
nameCacheMissAges.deleteScore(k);
size--; // size = nameCacheAges.size();
}
}
} }
/** /**

Loading…
Cancel
Save