Skip to content

Commit

Permalink
add-on to last commit
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6556 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Jan 9, 2010
1 parent eeca2de commit 7f20963
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/de/anomic/data/URLAnalysis.java
Expand Up @@ -416,7 +416,7 @@ public static int diffurlcol(String metadataPath, String statisticFile, String d
System.out.println("INDEX DIFF URL-COL startup");
HandleMap idx = new HandleMap(URIMetadataRow.rowdef.primaryKeyLength, URIMetadataRow.rowdef.objectOrder, 4, new File(statisticFile), 0);
MetadataRepository mr = new MetadataRepository(new File(metadataPath), "text.urlmd", false, false);
HandleSet hs = new HandleSet(URIMetadataRow.rowdef.primaryKeyLength, URIMetadataRow.rowdef.objectOrder, 1000000, 0);
HandleSet hs = new HandleSet(URIMetadataRow.rowdef.primaryKeyLength, URIMetadataRow.rowdef.objectOrder, 1000000);
System.out.println("INDEX DIFF URL-COL loaded dump, starting diff");
long start = System.currentTimeMillis();
long update = start - 7000;
Expand Down
2 changes: 1 addition & 1 deletion source/net/yacy/kelondro/rwi/ReferenceContainerArray.java
Expand Up @@ -329,7 +329,7 @@ public static <ReferenceType extends Reference> HandleMap referenceHashes(
final Row payloadrow) throws IOException, RowSpaceExceededException {

System.out.println("CELL REFERENCE COLLECTION startup");
HandleMap references = new HandleMap(payloadrow.primaryKeyLength, termOrder, 4, 1000000, 0);
HandleMap references = new HandleMap(payloadrow.primaryKeyLength, termOrder, 4, 1000000);
String[] files = heapLocation.list();
for (String f: files) {
if (f.length() < 22 || !f.startsWith("text.index") || !f.endsWith(".blob")) continue;
Expand Down

0 comments on commit 7f20963

Please sign in to comment.