Author: toad
Date: 2008-09-05 23:20:42 +0000 (Fri, 05 Sep 2008)
New Revision: 22482

Modified:
   trunk/plugins/XMLSpider/XMLSpider.java
Log:
Nextgens accidentally changed maxParallelRequests to 1 in unrelated commit 
22474 (which was StringBuffer -> StringBuilder's). Revert it.


Modified: trunk/plugins/XMLSpider/XMLSpider.java
===================================================================
--- trunk/plugins/XMLSpider/XMLSpider.java      2008-09-05 21:23:34 UTC (rev 
22481)
+++ trunk/plugins/XMLSpider/XMLSpider.java      2008-09-05 23:20:42 UTC (rev 
22482)
@@ -164,7 +164,7 @@
 //     private final HashMap positionsByWordByURI = new HashMap(); /* String 
(URI) -> HashMap (String (word) -> Integer[] (Positions)) */
        private final HashMap positionsByWordById = new HashMap();
        // Can have many; this limit only exists to save memory.
-       private static final int maxParallelRequests = 1;
+       private static final int maxParallelRequests = 100;
        private int maxShownURIs = 15;

        private NodeClientCore core;


Reply via email to