10 ms·
It will have the same problems as any other webserver utilizing blocking IO. Various people are working on async IO solutions; but it likely won't fall into th
by 15020 12y ago
It will have the same problems as any other webserver utilizing blocking IO.
Various people are working on async IO solutions; but it likely won't fall into the stdlib from what I can tell.
I'm currently working on a rust abstraction for epoll and kqueue to eventually be paired with a multithreaded event loop/reactor. Lots of stuff to reimplement.