@ -99,7 +99,7 @@ document.getElementById("Enter").value = "search again - catch up more links";
<p>No Results. (length of search words must be at least 3 characters)</p>
<p>No Results. (length of search words must be at least 3 characters)</p>
::
::
<divid="results"></div>
<divid="results"></div>
<spanid="resCounter"style="display: inline;"><strongid="resultsOffset">#[offset]#</strong>-<strongid="itemscount">#[linkcount]#</strong> results from a total number of <strongid="totalcount">#[totalcount]#</strong> known#(globalresults)#.::,<strongid="globalcount">#[globalcount]#</strong> links from other YaCy peers.#(/globalresults)#</span>
<spanid="resCounter"style="display: inline;"><strongid="resultsOffset">#[offset]#</strong>-<strongid="itemscount">#[itemscount]#</strong> results from a total number of <strongid="totalcount">#[totalcount]#</strong> known#(globalresults)#.:: (<strongid="localResourceSize">#[localResourceSize]#</strong> local, <strongid="remoteResourceSize">#[remoteResourceSize]#</strong> remote), <strongid="remoteIndexCount">#[remoteIndexCount]#</strong> links from<strongid="remotePeerCount">#[remotePeerCount]#</strong> other YaCy peers.#(/globalresults)#</span>
<p>Searching the web with this peer is disabled for unauthorized users. Please <ahref="Status.html?login=">log in</a> as administrator to use the search function</p>
<p>Searching the web with this peer is disabled for unauthorized users. Please <ahref="Status.html?login=">log in</a> as administrator to use the search function</p>
@ -350,14 +356,34 @@ public final class plasmaSearchRankingProcess {
returnflagcount;
returnflagcount;
}
}
// "results from a total number of <remote_resourceSize + local_resourceSize> known (<local_resourceSize> local, <remote_resourceSize> remote), <remote_indexCount> links from <remote_peerCount> other YaCy peers."
publicintfilteredCount(){
publicintfilteredCount(){
returnthis.filteredCount;
// the number of index entries that are considered as result set
returnthis.sortedRWIEntries.size();
}
}
publicintgetGlobalCount(){
publicintgetRemoteIndexCount(){
returnthis.globalcount;
// the number of result contributions from all the remote peers
returnthis.remote_indexCount;
}
}
publicintgetRemotePeerCount(){
// the number of remote peers that have contributed
returnthis.remote_peerCount;
}
publicintgetRemoteResourceSize(){
// the number of all hits in all the remote peers
returnthis.remote_resourceSize;
}
publicintgetLocalResourceSize(){
// the number of hits in the local peer (index size, size of the collection in the own index)