@ -869,12 +869,12 @@ public final class Protocol {
event.addTopic(result.references);
}
}
Network.log.logInfo("remote search: peer "+target.getName()+" sent "+container.get(0).size()+"/"+result.joincount +" references");
Network.log.logInfo("remote search: peer "+target.getName()+" sent "+container.get(0).size()+"/"+result.totalCount +" references");
}
privatestaticclassSearchResult{
publicinturlcount;// number of returned LURL's for this search
publicintjoincount;//
publicintavailableCount;// number of returned LURL's for this search
publicinttotalCount;//
publicMap<byte[],Integer>indexcount;//
publiclongsearchtime;// time that the peer actually spent to create the result
publicString[]references;// search hints, the top-words
@ -974,12 +974,12 @@ public final class Protocol {
+resultMap.toString());
}
try{
this.joincount =Integer.parseInt(resultMap.get("joincount"));// the complete number of hits at remote site
this.totalCount =Integer.parseInt(resultMap.get("joincount"));// the complete number of hits at remote site; rwi+solr (via: theSearch.getResultCount())
}catch(finalNumberFormatExceptione){
thrownewIOException("wrong output format for joincount: "+e.getMessage());
}
try{
this.urlcount =Integer.parseInt(resultMap.get("count"));// the number of hits that are returned in the result list
this.availableCount =Integer.parseInt(resultMap.get("count"));// the number of hits that are returned in the result list
}catch(finalNumberFormatExceptione){
thrownewIOException("wrong output format for count: "+e.getMessage());