* AbstractFrontier

reduce size of inbound now that many threads will opportunistically clear it
This commit is contained in:
gojomo
2010-11-08 23:44:43 +00:00
parent 484afeeea4
commit b5eb4f3c1e
@@ -345,7 +345,7 @@ public abstract class AbstractFrontier
outbound = new ArrayBlockingQueue<CrawlURI>(200, true);
}
if(inbound==null) {
inbound = new ArrayBlockingQueue<InEvent>(40000, true);
inbound = new ArrayBlockingQueue<InEvent>(4000, true);
}
pause();
startManagerThread();