我正在构建一个需要同时处理多个请求的 HTTPServer。
我构建的主要功能如下所示:
public static void main(String[] args) throws Exception {
HttpServer server = HttpServer.create(new InetSocketAddress(8000), 0);
server.createContext("/", new MyRequestDispatcher());
server.setExecutor(Executors.newCachedThreadPool());
server.start();
}
现在我正在考虑这Executors.newCachedThreadPool()
对于创建的线程数量是如何工作的。正如我所读到的,要创建的线程数没有限制,如果我同时收到一千个请求,它会创建一千个线程吗?
我正在考虑限制同时创建的线程数,以便在运行它的机器上正确处理。我想到了这样的事情:
Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors())
目标是仅根据系统中的可用处理器创建给定数量的线程。
这行得通吗?
提前致谢!!