From c2d863855d7c250c31aed01f3ddc307a4fe28903 Mon Sep 17 00:00:00 2001 From: orbiter Date: Mon, 20 Feb 2006 22:21:53 +0000 Subject: [PATCH] different flush limit git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1713 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaWordIndex.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/plasma/plasmaWordIndex.java b/source/de/anomic/plasma/plasmaWordIndex.java index 93af2cf02..76d9fa60e 100644 --- a/source/de/anomic/plasma/plasmaWordIndex.java +++ b/source/de/anomic/plasma/plasmaWordIndex.java @@ -118,7 +118,7 @@ public final class plasmaWordIndex { int added = ramCache.addEntries(entries, updateTime, highPriority); // force flush - while (ramCache.maxURLinWordCache() > 150) { + while (ramCache.maxURLinWordCache() > 50) { try { Thread.sleep(10); } catch (InterruptedException e) { } flushCacheToBackend(ramCache.bestFlushWordHash()); }