-
How can I configure the number of event loop on the server? How to configure flags? |
Beta Was this translation helpful? Give feedback.
Answered by
jrhee17
Dec 4, 2024
Replies: 1 comment 6 replies
-
Hi! If you would like to specify it globally, you can declare it via flags. armeria/core/src/main/java/com/linecorp/armeria/common/Flags.java Lines 686 to 699 in 4ba1531 Alternatively, you can specify the number of event loops per-server as well. |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
d3bt3ch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! If you would like to specify it globally, you can declare it via flags.
You can specify it programmatically via SPI or via JVM flags.
armeria/core/src/main/java/com/linecorp/armeria/common/Flags.java
Lines 686 to 699 in 4ba1531