我正在构建一个需要同时处理多个请求的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())
目标是仅根据系统中可用的处理器创建给定数量的线程。
这会有用吗?
提前致谢!!
答案 0 :(得分:4)
是的,它会起作用,而且它是您最常看到的建议。
根据您的具体使用情况,您仍可能需要使用其他号码。