Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Jetty 6 and was wondering when the QueuedThreadPool should be used over the ThreadPool? By default, Jetty 6 comes configured with the QueuedThreadPool.

My server has Java 6 installed so I was thinking that I should use the ThreadPool:

<New class="org.mortbay.thread.QueuedThreadPool">
    		<Set name="minThreads">10</Set>
    		<Set name="maxThreads">200</Set>
    		<Set name="lowThreads">20</Set>
    		<Set name="SpawnOrShrinkAt">2</Set>
    	</New>

<New class="org.mortbay.thread.concurrent.ThreadPool">
    		<Set name="corePoolSize">50</Set>
    		<Set name="maximumPoolSize">50</Set>
    	</New>

Thanks, Walter

share|improve this question

1 Answer

up vote -9 down vote accepted

I am using Glassfish now, it seems to be better written and supports the latest Java EE specs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.