- fixed superfluous space in query field list
- fixed filter query logic
- removed look-ahead query which caused that each new search page
submitted two solr queries
- fixed random solr result orders in case that the solr score was equal:
this was then re-ordered by YaCy using the document hash which came from
the solr object and that appeared to be random. Now the hash of the url
is used and the score is additionally modified by the url length to
prevent that this particular case appears at all.
@ -973,7 +973,8 @@ public final class SearchEvent {
this.urlhashes.putUnique(iEntry.hash());
rankingtryloop:while(true){
try{
longscore=(long)(1000000.0f*iEntry.score());
longscore=(long)Math.max(0,(1000000.0f*iEntry.score())-iEntry.urllength());// we modify the score here since the solr score is equal in many cases and then the order would simply depend on the url hash which would be silly
this.nodeStack.put(newReverseElement<URIMetadataNode>(iEntry,score==0?this.order.cardinal(iEntry):score));// inserts the element and removes the worst (which is smallest)
breakrankingtryloop;
}catch(finalArithmeticExceptione){
@ -1519,13 +1520,15 @@ public final class SearchEvent {