Hacker News new | ask | show | jobs
by 15020 4259 days 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.

1 comments

Is there a github repo or similar for what you're working on?
I found this... https://github.com/carllerche/mio

No windows support yet, but planned.