我感觉好像tomcat启动的线程所占用的资源好像更多也更珍贵,直接和吞吐量相关,所以现在采用nio模式来尽快归还Tomcat的线程来提供并发,到底是不是我理解的这样呢?
2 回答
偶然的你
TA贡献1841条经验 获得超3个赞
/** * Same as a java.util.concurrent.ThreadPoolExecutor but implements a much more efficient * {@link #getSubmittedCount()} method, to be used to properly handle the work queue. * If a RejectedExecutionHandler is not specified a default one will be configured * and that one will always throw a RejectedExecutionException * */
tomcat的线程池对象也叫ThreadPoolExecutor ,继承jdk的java.util.concurrent.ThreadPoolExecutor,但是它实现了一个高效的方法getSubmittedCount()方法用来处理工作队列。
具体可以看org.apache.tomcat.util.threads包下面的几个类的源码。
- 2 回答
- 0 关注
- 1339 浏览
添加回答
举报
0/150
提交
取消