取消属性默认值

时间:2017-01-27 07:53:34

标签: spring-boot undertow

我们目前正在调整使用underow的服务,但我们无法找到以下属性的默认值:

server.undertow.worker-threads
server.undertow.io-threads

我们了解到在设置线程时使用org.xnio.Options但是找不到任何默认值。

1 个答案:

答案 0 :(得分:6)

来自https://github.com/undertow-io/undertow/blob/master/core/src/main/java/io/undertow/Undertow.java

...
    ioThreads = Math.max(Runtime.getRuntime().availableProcessors(), 2);
    workerThreads = ioThreads * 8;
...