Jetty 6 - QueuedThreadPool与ThreadPool

时间:2009-11-02 15:09:11

标签: optimization configuration jetty

我正在使用Jetty 6,并且想知道何时应该在ThreadPool上使用QueuedThreadPool?默认情况下,Jetty 6配置了QueuedThreadPool。

我的服务器安装了Java 6,所以我认为我应该使用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>

谢谢, 沃尔特

0 个答案:

没有答案