Skip to content

Commit

Permalink
some bugfix for statistics
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3211 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Jan 15, 2007
1 parent 06152cd commit 52c6461
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions htroot/SearchStatisticsRemote_p.java
Expand Up @@ -60,7 +60,7 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
prop.put("list_" + entCount + "_dark", ((dark) ? 1 : 0) ); dark =! dark;
prop.put("list_" + entCount + "_host", (String) searchProfile.get("host"));
prop.put("list_" + entCount + "_date", (new Date(trackerHandle.longValue())).toString());
prop.put("list_" + entCount + "_queryhashes", plasmaSearchQuery.hashSet2hashString((Set) searchProfile.get("queryhashes")));
prop.put("list_" + entCount + "_queryhashes", plasmaSearchQuery.anonymizedQueryHashes((Set) searchProfile.get("queryhashes")));
prop.put("list_" + entCount + "_querycount", ((Integer) searchProfile.get("querycount")).toString());
prop.put("list_" + entCount + "_querytime", ((Long) searchProfile.get("querytime")).toString());
prop.put("list_" + entCount + "_resultcount", ((Integer) searchProfile.get("resultcount")).toString());
Expand All @@ -71,7 +71,7 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
}
prop.put("list", entCount);
prop.put("num", entCount);
prop.put("total", switchboard.localSearches.size());
prop.put("total", switchboard.remoteSearches.size());
// return rewrite properties
return prop;
}
Expand Down
6 changes: 3 additions & 3 deletions htroot/yacy/search.java
Expand Up @@ -143,7 +143,7 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
// this is _not_ a normal search, only a request for index abstracts
squery = new plasmaSearchQuery(abstractSet, maxdist, prefer, plasmaSearchQuery.contentdomParser(contentdom), count, duetime, filter, plasmaSearchQuery.catchall_constraint);
squery.domType = plasmaSearchQuery.SEARCHDOM_LOCAL;
yacyCore.log.logInfo("INIT HASH SEARCH (abstracts only): " + squery.anonymizedQueryHashes() + " - " + squery.wantedResults + " links");
yacyCore.log.logInfo("INIT HASH SEARCH (abstracts only): " + plasmaSearchQuery.anonymizedQueryHashes(squery.queryHashes) + " - " + squery.wantedResults + " links");

// prepare a search profile
plasmaSearchRankingProfile rankingProfile = (profile.length() == 0) ? new plasmaSearchRankingProfile(contentdom) : new plasmaSearchRankingProfile("", profile);
Expand All @@ -170,7 +170,7 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
// retrieve index containers from search request
squery = new plasmaSearchQuery(keyhashes, maxdist, prefer, plasmaSearchQuery.contentdomParser(contentdom), count, duetime, filter, constraint);
squery.domType = plasmaSearchQuery.SEARCHDOM_LOCAL;
yacyCore.log.logInfo("INIT HASH SEARCH (query-" + abstracts + "): " + squery.anonymizedQueryHashes() + " - " + squery.wantedResults + " links");
yacyCore.log.logInfo("INIT HASH SEARCH (query-" + abstracts + "): " + plasmaSearchQuery.anonymizedQueryHashes(squery.queryHashes) + " - " + squery.wantedResults + " links");

// prepare a search profile
plasmaSearchRankingProfile rankingProfile = (profile.length() == 0) ? new plasmaSearchRankingProfile(contentdom) : new plasmaSearchRankingProfile("", profile);
Expand Down Expand Up @@ -305,7 +305,7 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
prop.put("fwrec", ""); // peers that would have helped to construct this result (recommendations)

// log
yacyCore.log.logInfo("EXIT HASH SEARCH: " + squery.anonymizedQueryHashes() + " - " + joincount + " links found, " + prop.get("linkcount", "?") + " links selected, " + ((System.currentTimeMillis() - timestamp1) / 1000) + " seconds");
yacyCore.log.logInfo("EXIT HASH SEARCH: " + plasmaSearchQuery.anonymizedQueryHashes(squery.queryHashes) + " - " + joincount + " links found, " + prop.get("linkcount", "?") + " links selected, " + ((System.currentTimeMillis() - timestamp1) / 1000) + " seconds");

prop.put("searchtime", Long.toString(System.currentTimeMillis() - timestamp));

Expand Down
10 changes: 5 additions & 5 deletions source/de/anomic/plasma/plasmaSearchQuery.java
Expand Up @@ -200,11 +200,11 @@ public void filterOut(Set blueList) {
if (blueList.contains(word)) it.remove();
}
}
public String anonymizedQueryHashes() {

public static String anonymizedQueryHashes(Set hashes) {
// create a more anonymized representation of euqery hashes for logging
StringBuffer sb = new StringBuffer(queryHashes.size() * 14 + 2);
Iterator i = queryHashes.iterator();
StringBuffer sb = new StringBuffer(hashes.size() * 14 + 2);
Iterator i = hashes.iterator();
sb.append("[");
String hash;
if (i.hasNext()) {
Expand All @@ -218,5 +218,5 @@ public String anonymizedQueryHashes() {
sb.append("]");
return new String(sb);
}

}

0 comments on commit 52c6461

Please sign in to comment.