yacy_search_server/htroot/PerformanceSearch_p.html
orbiter 4779f314fe first version of next-generation search interface:
- snippets are not fetched by browser using ajax, they are now fetched internally
- YaCy-internat threads control existence of snippets and sort out bad results
- search results are prepared using SSI includes
- the search result page is visible right after the search request, the results drop in when they are detected
- no more time-out strategy during search processes, results are shifted within queues when they arrive from remote peers
- added result page switching! after the first 10 results, the next page can be retrieved
- number of remote results is updated online on the result page as they drop in
- removed old snippet servelet (which had been also a security leak btw)
- media search is broken now, will be redesigned and fixed in another step


git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4071 6c8d7289-2bf4-0310-a012-ef5d649a1542
2007-09-03 23:43:55 +00:00

37 lines
1.2 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>YaCy '#[clientname]#': Performance Settings of Search Sequence</title>
#%env/templates/metas.template%#
</head>
<body id="PerformanceSearch">
#%env/templates/header.template%#
#%env/templates/submenuConfig.template%#
<h2>Search Sequence Timing</h2>
<p>
<strong>Timing results of latest search request:</strong>
</p>
<table border="0" cellpadding="2" cellspacing="1">
<tr class="TableHeader" valign="bottom">
<td>Event</td>
<td>Time (milliseconds)</td>
<td>Result-Count</td>
</tr>
#{table}#
<tr class="TableCellDark" valign="bottom">
<td>#[event]#</td>
<td>#[time]#</td>
<td>#[count]#</td>
</tr>
#{/table}#
</table>
<p>
The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:
<img src="SearchEventPicture.png" alt="Search event picture" />
</p>
#%env/templates/footer.template%#
</body>
</html>