increased cache size of robots database; however, this should be integrated into new memory control

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@784 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent c6d2f50375
commit 3274ae725e

@ -67,15 +67,15 @@ public class plasmaCrawlRobotsTxt {
this.robotsTableFile = robotsTableFile; this.robotsTableFile = robotsTableFile;
if (robotsTableFile.exists()) { if (robotsTableFile.exists()) {
try { try {
robotsTable = new kelondroMap(new kelondroDyn(robotsTableFile, 32000)); robotsTable = new kelondroMap(new kelondroDyn(robotsTableFile, 1000000));
} catch (kelondroException e) { } catch (kelondroException e) {
robotsTableFile.delete(); robotsTableFile.delete();
robotsTableFile.getParentFile().mkdirs(); robotsTableFile.getParentFile().mkdirs();
robotsTable = new kelondroMap(new kelondroDyn(robotsTableFile, 32000, 256, 512)); robotsTable = new kelondroMap(new kelondroDyn(robotsTableFile, 1000000, 256, 512));
} }
} else { } else {
robotsTableFile.getParentFile().mkdirs(); robotsTableFile.getParentFile().mkdirs();
robotsTable = new kelondroMap(new kelondroDyn(robotsTableFile, 32000, 256, 512)); robotsTable = new kelondroMap(new kelondroDyn(robotsTableFile, 1000000, 256, 512));
} }
} }
@ -87,7 +87,7 @@ public class plasmaCrawlRobotsTxt {
if (!(robotsTableFile.delete())) throw new RuntimeException("cannot delete robots.txt database"); if (!(robotsTableFile.delete())) throw new RuntimeException("cannot delete robots.txt database");
try { try {
robotsTableFile.getParentFile().mkdirs(); robotsTableFile.getParentFile().mkdirs();
robotsTable = new kelondroMap(new kelondroDyn(robotsTableFile, 32000, 256, 512)); robotsTable = new kelondroMap(new kelondroDyn(robotsTableFile, 1000000, 256, 512));
} catch (IOException e){ } catch (IOException e){
serverLog.logSevere("PLASMA", "robotsTxt.resetDatabase", e); serverLog.logSevere("PLASMA", "robotsTxt.resetDatabase", e);
} }

Loading…
Cancel
Save