From 971756e8dd2abe9df4fa2b765f12b0df734a455a Mon Sep 17 00:00:00 2001 From: borg-0300 Date: Thu, 1 Sep 2005 23:35:00 +0000 Subject: [PATCH] the delete size is smaller See: http://www.yacy-forum.de/viewtopic.php?t=1084 git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@634 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaHTCache.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/de/anomic/plasma/plasmaHTCache.java b/source/de/anomic/plasma/plasmaHTCache.java index bebd095e1..915a7f462 100644 --- a/source/de/anomic/plasma/plasmaHTCache.java +++ b/source/de/anomic/plasma/plasmaHTCache.java @@ -256,9 +256,9 @@ public final class plasmaHTCache { } private void cleanup() { - // clean up cache to have 8% (enough) space for next entries + // clean up cache to have 3% (enough) space for next entries if ((currCacheSize >= maxCacheSize) && (cacheAge.size() > 0)) { - if (maxCacheSize > 0) cleanupDoIt(maxCacheSize - ((maxCacheSize / 100) * 8)); + if (maxCacheSize > 0) cleanupDoIt((maxCacheSize - ((maxCacheSize / 100) * 3)); } } @@ -468,7 +468,7 @@ public final class plasmaHTCache { (urlString.indexOf("&") >= 0)); } - public static boolean isCGI(String urlString) { + public static boolean isCGI(String urlString) { // Borg-0300 String ls = urlString.toLowerCase(); return ((ls.indexOf(".cgi") >= 0) || (ls.indexOf(".exe") >= 0) ||