Hi
During implementation of Networking application with MIO, I realized that I need concurrency with single threaded Network Event Loop, and using logic from Nginx implementation
- Event Loop Thread - Handle connection
- Event Loop Thread - Read data from connection
- Thread from Thread Pool - Handle data and process it
- Event Loop Thread - Return back to Event loop with concurrently parsed data
So for that purposes yesterday I made a library https://github.com/tigranbs/poolter , and wanted to as is there anything else in Rust STD which can replace this implementation?
Thanks