- removed 'deleteComplete' flag; this was used especially for WORDS indexes
- shifted methods from plasmaSwitchboard to plasmaWordIndex
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3051 6c8d7289-2bf4-0310-a012-ef5d649a1542
log.logFine("Selected hash "+this.startPointHash+" as start point for index distribution, distance = "+yacyDHTAction.dhtDistance(yacyCore.seedDB.mySeed.hash,this.startPointHash));
log.logFine("Demanded hash "+startHash+" as start point for index distribution, distance = "+yacyDHTAction.dhtDistance(yacyCore.seedDB.mySeed.hash,this.startPointHash));
seedDB.mySeed.put(yacySeed.UPTIME,Long.toString(uptime/60));// the number of minutes that the peer is up in minutes/day (moving average MA30)
seedDB.mySeed.put(yacySeed.LCOUNT,Integer.toString(sb.wordIndex.loadedURL.size()));// the number of links that the peer has stored (LURL's)
seedDB.mySeed.put(yacySeed.NCOUNT,Integer.toString(sb.noticeURL.stackSize()));// the number of links that the peer has noticed, but not loaded (NURL's)
seedDB.mySeed.put(yacySeed.ICOUNT,Integer.toString(sb.cacheSizeMin()));// the minimum number of words that the peer has indexed (as it says)
seedDB.mySeed.put(yacySeed.ICOUNT,Integer.toString(sb.wordIndex.size()));// the minimum number of words that the peer has indexed (as it says)
seedDB.mySeed.put(yacySeed.SCOUNT,Integer.toString(seedDB.sizeConnected()));// the number of seeds that the peer has stored
seedDB.mySeed.put(yacySeed.CCOUNT,Double.toString(((int)((seedDB.sizeConnected()+seedDB.sizeDisconnected()+seedDB.sizePotential())*60.0/(uptime+1.01))*100)/100.0));// the number of clients that the peer connects (as connects/hour)