From 0c35171c85d14943721ba85bce9e869a5a22a0eb Mon Sep 17 00:00:00 2001 From: orbiter Date: Mon, 23 May 2005 15:07:16 +0000 Subject: [PATCH] assortment fine-tuning git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@163 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- .../anomic/plasma/plasmaWordIndexCache.java | 25 ++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/source/de/anomic/plasma/plasmaWordIndexCache.java b/source/de/anomic/plasma/plasmaWordIndexCache.java index 92145430e..10cb627e4 100644 --- a/source/de/anomic/plasma/plasmaWordIndexCache.java +++ b/source/de/anomic/plasma/plasmaWordIndexCache.java @@ -358,6 +358,22 @@ public final class plasmaWordIndexCache implements plasmaWordIndexInterface { Map.Entry entry; int candidateCounter; + count = 0; + + // flush high-scores that accumultated too much + for (int cluster = clusterCandidate.length; cluster >= 100; cluster--) { + candidateCounter = 0; + i = clusterCandidate[cluster - 1].entrySet().iterator(); + while (i.hasNext()) { + entry = (Map.Entry) i.next(); + key = (String) entry.getValue(); + createTime = (Long) entry.getKey(); + count += java.lang.Math.abs(flushFromMem(key, false)); + candidateCounter += cluster + 1; + log.logDebug("flushed high-cluster over limit #" + (cluster + 1) + ", key=" + key + ", count=" + count + ", cachesize=" + cache.size()); + } + } + // flush from assortment cluster for (int cluster = 0; cluster < assortmentLimit; cluster++) { candidateCounter = 0; @@ -373,9 +389,12 @@ public final class plasmaWordIndexCache implements plasmaWordIndexInterface { count += java.lang.Math.abs(flushFromMem(key, true)); candidateCounter += cluster + 1; } + if (count > 2000) { + if (candidateCounter > 0) log.logDebug("flushed low-cluster #" + (cluster + 1) + ", count=" + count + ", candidateCounter=" + candidateCounter + ", cachesize=" + cache.size()); + return count; + } } if (candidateCounter > 0) log.logDebug("flushed low-cluster #" + (cluster + 1) + ", count=" + count + ", candidateCounter=" + candidateCounter + ", cachesize=" + cache.size()); - if (count > 2000) return count; } // stop flushing if cache is shrinked enough @@ -383,7 +402,7 @@ public final class plasmaWordIndexCache implements plasmaWordIndexInterface { if (cache.size() < this.maxWords) return count; // flush high-scores - for (int cluster = clusterCandidate.length; cluster > 0; cluster--) { + for (int cluster = 100; cluster >= assortmentLimit; cluster--) { candidateCounter = 0; i = clusterCandidate[cluster - 1].entrySet().iterator(); while (i.hasNext()) { @@ -394,7 +413,7 @@ public final class plasmaWordIndexCache implements plasmaWordIndexInterface { if ((createTime != null) && ((System.currentTimeMillis() - createTime.longValue()) > (600000/cluster))) { count += java.lang.Math.abs(flushFromMem(key, false)); candidateCounter += cluster + 1; - log.logDebug("flushed high-cluster #" + (cluster + 1) + ", key=" + key + ", count=" + count + ", cachesize=" + cache.size()); + log.logDebug("flushed high-cluster below limit #" + (cluster + 1) + ", key=" + key + ", count=" + count + ", cachesize=" + cache.size()); } } }