-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
Currently a new thread is created for every incoming connection. Reusing old threads would improve performance.
It would be useful to do some research on what type of thread pool to use:
- Fixed size (probably bad: Refusing connections, if no thread is available)
- Just growing (probably bad: Many paused threads)
- growing and shrinking