我正在使用 Jetty 8 及其 ProxyServlet,并且想知道使用最快的线程池是 ExecutorThreadPool 还是 QueuedThreadPool?
这是我目前正在使用的代码:
Server httpProxy = new Server();
SelectChannelConnector connector = new SelectChannelConnector();
connector.setPort(8087);
connector.setMaxIdleTime(400000);
connector.setThreadPool(new ExecutorThreadPool(256));
httpProxy.addConnector(connector);