Skip to content

Commit bef4b01

Browse files
committed
fixing links in the execution-model doc
Signed-off-by: Lewis Birks <22620804+lewisbirks@users.noreply.github.com>
1 parent e3abac2 commit bef4b01

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/asciidoc/execution-model.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ worker executor is used when:
354354

355355
Each web server provides a default *worker executor*:
356356

357-
- Netty: The javadoc:netty.Netty[text=Netty server] implementation multiply the number of available processors
357+
- Netty: The javadoc:netty.NettyServer[text=Netty server, library=netty] implementation multiply the number of available processors
358358
(with a minimum of 2) by 8.
359359

360360
----
@@ -363,7 +363,7 @@ workerThreads = Math.max(Runtime.getRuntime().availableProcessors(), 2) * 8
363363

364364
For example `8` cores gives us `64` worker threads.
365365

366-
- Undertow: The javadoc:utow.Utow[text=Undertow server] implementation multiply the number of available processors
366+
- Undertow: The javadoc:undertow.UndertowServer[text=Undertow server, library=undertow] implementation multiply the number of available processors
367367
by 8.
368368

369369
----
@@ -372,7 +372,7 @@ workerThreads = Runtime.getRuntime().availableProcessors() * 8
372372

373373
For `8` cores gives us `64` worker threads.
374374

375-
- Jetty: The javadoc:jetty.Jetty[text=Jetty server] implementation uses the default configuration
375+
- Jetty: The javadoc:jetty.JettyServer[text=Jetty server, library=jetty] implementation uses the default configuration
376376
with `200` worker threads.
377377

378378
These are sensible defaults suggested by the server implementation. If you need to increase/decrease

0 commit comments

Comments
 (0)