From 149409ba5cc7fecd379fc25011175b8346f78313 Mon Sep 17 00:00:00 2001 From: borg-0300 Date: Mon, 20 Feb 2006 23:15:39 +0000 Subject: [PATCH] move description -> javadoc git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1716 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/yacy/yacySeedDB.java | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/source/de/anomic/yacy/yacySeedDB.java b/source/de/anomic/yacy/yacySeedDB.java index 38db2705c..fffdbdbc5 100644 --- a/source/de/anomic/yacy/yacySeedDB.java +++ b/source/de/anomic/yacy/yacySeedDB.java @@ -74,12 +74,15 @@ import de.anomic.yacy.yacySeed; public final class yacySeedDB { // global statics + + /** + * this is the lenght(12) of the hash key that is used:
+ * - for seed hashes (this Object)
+ * - for word hashes (plasmaIndexEntry.wordHashLength)
+ * - for L-URL hashes (plasmaLURL.urlHashLength)

+ * these hashes all shall be generated by base64.enhancedCoder + */ public static final int commonHashLength = 12; - // this is the lenght of the hash key that is used: - // - for seed hashes (this Object) - // - for word hashes (plasmaIndexEntry.wordHashLength) - // - for L-URL hashes (plasmaLURL.urlHashLength) - // these hashes all shall be generated by base64.enhancedCoder public static final String[] sortFields = new String[] {yacySeed.LCOUNT, yacySeed.ICOUNT, yacySeed.UPTIME, yacySeed.VERSION, yacySeed.LASTSEEN}; public static final String[] accFields = new String[] {yacySeed.LCOUNT, yacySeed.ICOUNT, yacySeed.ISPEED};