
15 Dec
2005
15 Dec
'05
7:57 p.m.
"Bardur Arantsson" <spam@scientician.net> wrote
Thus limiting your #simultaneous connections to the number of threads in your thread pool. You can do better by doing all the parsing, request splitting, etc. in a async-using main acceptor thread and handing off smaller bits of work to the threads in the pool. That way you can exploit the fact that some threads may finish some parts of a given request early, and may be available to serve other connections.
Thus serving the same connection from different threads? I just don't happen to like how this would impact the processing algorithm... Regards, Arkadiy