You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on our internal benchmarks the following eventloop configuration works best:
Have a single threaded eventloop group for accepting new client connections.
Have a worker eventloop group for processing data on a client connection. The default configuration would be the eventloop threads equal to the number of cores on the machine.
Any server created via RxNetty must have the above configuration, however, it can be overridden using the available builder methods.
The text was updated successfully, but these errors were encountered:
ReactiveX#164: Removed flatMap() usage in HttpConnectionHandler in favor of a custom operator.
ReactiveX#166: Defined a facility to also specify the acceptor event loop. RxNetty defaults to an acceptor event loop with 1 thread. Also, the number of worker threads == number of available processors.
ReactiveX#167: Not sending Connection: keep-alive for HTTP 1.1. protocol
Based on our internal benchmarks the following eventloop configuration works best:
Any server created via RxNetty must have the above configuration, however, it can be overridden using the available builder methods.
The text was updated successfully, but these errors were encountered: