|
|
|
@ -133,7 +133,7 @@ public final class search {
|
|
|
|
|
// this is _not_ a normal search, only a request for index abstracts
|
|
|
|
|
squery = new plasmaSearchQuery(abstractSet, maxdist, prefer, count, duetime, filter);
|
|
|
|
|
squery.domType = plasmaSearchQuery.SEARCHDOM_LOCAL;
|
|
|
|
|
yacyCore.log.logInfo("INIT HASH SEARCH (abstracts only): " + squery.queryHashes + " - " + squery.wantedResults + " links");
|
|
|
|
|
yacyCore.log.logInfo("INIT HASH SEARCH (abstracts only): " + squery.anonymizedQueryHashes() + " - " + squery.wantedResults + " links");
|
|
|
|
|
|
|
|
|
|
// prepare a search profile
|
|
|
|
|
plasmaSearchRankingProfile rankingProfile = new plasmaSearchRankingProfile(new String[]{plasmaSearchRankingProfile.ORDER_YBR, plasmaSearchRankingProfile.ORDER_DATE, plasmaSearchRankingProfile.ORDER_QUALITY});
|
|
|
|
@ -160,7 +160,7 @@ public final class search {
|
|
|
|
|
// retrieve index containers from search request
|
|
|
|
|
squery = new plasmaSearchQuery(keyhashes, maxdist, prefer, count, duetime, filter);
|
|
|
|
|
squery.domType = plasmaSearchQuery.SEARCHDOM_LOCAL;
|
|
|
|
|
yacyCore.log.logInfo("INIT HASH SEARCH (query-" + abstracts + "): " + squery.queryHashes + " - " + squery.wantedResults + " links");
|
|
|
|
|
yacyCore.log.logInfo("INIT HASH SEARCH (query-" + abstracts + "): " + squery.anonymizedQueryHashes() + " - " + squery.wantedResults + " links");
|
|
|
|
|
|
|
|
|
|
// prepare a search profile
|
|
|
|
|
plasmaSearchRankingProfile rankingProfile = new plasmaSearchRankingProfile(new String[]{plasmaSearchRankingProfile.ORDER_YBR, plasmaSearchRankingProfile.ORDER_DATE, plasmaSearchRankingProfile.ORDER_QUALITY});
|
|
|
|
@ -284,7 +284,7 @@ public final class search {
|
|
|
|
|
prop.put("fwrec", ""); // peers that would have helped to construct this result (recommendations)
|
|
|
|
|
|
|
|
|
|
// log
|
|
|
|
|
yacyCore.log.logInfo("EXIT HASH SEARCH: " + squery.queryHashes + " - " + joincount + " links found, " + prop.get("linkcount", "?") + " links selected, " + ((System.currentTimeMillis() - timestamp1) / 1000) + " seconds");
|
|
|
|
|
yacyCore.log.logInfo("EXIT HASH SEARCH: " + squery.anonymizedQueryHashes() + " - " + joincount + " links found, " + prop.get("linkcount", "?") + " links selected, " + ((System.currentTimeMillis() - timestamp1) / 1000) + " seconds");
|
|
|
|
|
|
|
|
|
|
prop.put("searchtime", Long.toString(System.currentTimeMillis() - timestamp));
|
|
|
|
|
|
|
|
|
|