Merge pull request #4980 from eclipse/jetty-9.4.x-threadPoolDocumentation
fix documentation on where to configure ThreadPool
This commit is contained in:
commit
effcccd27a
|
@ -31,7 +31,7 @@ In the standard Jetty distribution, the core server configuration is in `etc/jet
|
|||
|
||||
ThreadPool::
|
||||
The Server instance provides a ThreadPool instance that is the default Executor service other Jetty server components use.
|
||||
The prime configuration of the thread pool is the maximum and minimum size and is set in `start.ini` or `start.d/server.ini`.
|
||||
The prime configuration of the thread pool is the maximum and minimum size and is set in `start.ini` or `start.d/threadpool.ini`.
|
||||
Handlers::
|
||||
A Jetty server can have only a single Handler instance to handle incoming HTTP requests.
|
||||
However a handler may be a container or wrapper of other handlers forming a tree of handlers that typically
|
||||
|
|
|
@ -16,7 +16,7 @@ etc/jetty-threadpool.xml
|
|||
#jetty.threadPool.maxThreads=200
|
||||
|
||||
## Number of reserved threads (-1 for heuristic)
|
||||
# jetty.threadPool.reservedThreads=-1
|
||||
#jetty.threadPool.reservedThreads=-1
|
||||
|
||||
## Thread Idle Timeout (in milliseconds)
|
||||
#jetty.threadPool.idleTimeout=60000
|
||||
|
|
Loading…
Reference in New Issue