> Not really. What you can achieve is something similar to what I created with 
> httpbeast: each thread running its own Async event loop and allowing the 
> system to load balance the socket connections. For clients that will likely 
> be trickier.

This _event-loop per thread_ is only required on Linux where epoll is 
inherently single threaded. Using IOCP you simply spawn N threads and make them 
spin on GetQueuedCompletionStatus. All balancing is done by the kernel. ARC 
should make this work more natural.

Reply via email to