From 89a4cca4df10e84833c09d17877d181e0bfce8c3 Mon Sep 17 00:00:00 2001 From: allo Date: Mon, 7 Nov 2005 06:53:44 +0000 Subject: [PATCH] max. num of Entries git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1043 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/xml/queues/indexing_p.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/htroot/xml/queues/indexing_p.java b/htroot/xml/queues/indexing_p.java index fb4fc0bfc..df8954332 100644 --- a/htroot/xml/queues/indexing_p.java +++ b/htroot/xml/queues/indexing_p.java @@ -97,8 +97,15 @@ public class indexing_p { if ((switchboard.sbQueue.size() > 0)) { entryList.addAll(switchboard.sbQueue.list(0)); } + int size=10; + if(post!= null && post.containsKey("num")){ + size=(int)Integer.parseInt((String)post.get("num")); + } + if(size>entryList.size()){ + size=entryList.size(); + } - for (i = 0; i < entryList.size(); i++) { + for (i = 0; i < size; i++) { boolean inProcess = i < inProcessCount; pcentry = (plasmaSwitchboardQueue.Entry) entryList.get(i); long entrySize = pcentry.size();