Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…lit=&p=3383#p3383

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4230 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Nov 23, 2007
1 parent 2fcd18a commit 90a0299
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/de/anomic/plasma/plasmaSearchEvent.java
Expand Up @@ -208,9 +208,12 @@ private plasmaSearchEvent(plasmaSearchQuery query,
process.startTimer();
indexURLEntry uentry;
ResultEntry resultEntry;
yacyURL url;
synchronized (rankedCache) {
while ((rankedCache.size() > 0) && ((uentry = rankedCache.bestURL(true)) != null) && (resultList.size() < (query.neededResults()))) {
System.out.println("***DEBUG*** SEARCH RESULT URL=" + uentry.comp().url().toNormalform(false, false));
url = uentry.comp().url();
if (url == null) continue;
System.out.println("***DEBUG*** SEARCH RESULT URL=" + url.toNormalform(false, false));

resultEntry = obtainResultEntry(uentry, (snippetComputationAllTime < 300) ? 1 : 0);
if (resultEntry == null) continue; // the entry had some problems, cannot be used
Expand Down

0 comments on commit 90a0299

Please sign in to comment.