- increased sort limit, now 3000 entries, before: 1000
this should cause that more results can be shown in case
of strong limitating constraints, like domain navigation
- enhanced the sort process
- check against domain navigator bugs
- fix in sort stack
- showing now all naviagtion pages at first search (not only next page)
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6569 6c8d7289-2bf4-0310-a012-ef5d649a1542
@ -67,7 +67,7 @@ public final class RankingProcess extends Thread {
privatefinalQueryParamsquery;
privatefinalintmaxentries;
privatefinalConcurrentHashMap<String,Integer>urlhashes;// map for double-check; String/Long relation, addresses ranking number (backreference for deletion)
privatefinalConcurrentHashMap<String,Long>urlhashes;// map for double-check; String/Long relation, addresses ranking number (backreference for deletion)
privatefinalint[]flagcount;// flag counter
privatefinalTreeSet<String>misses;// contains url-hashes that could not been found in the LURL-DB
//private final int[] domZones;
@ -99,7 +99,7 @@ public final class RankingProcess extends Thread {