|
|
|
@ -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:<br>
|
|
|
|
|
* - for seed hashes (this Object)<br>
|
|
|
|
|
* - for word hashes (plasmaIndexEntry.wordHashLength)<br>
|
|
|
|
|
* - for L-URL hashes (plasmaLURL.urlHashLength)<br><br>
|
|
|
|
|
* 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};
|
|
|
|
|