Earlier quoted context omitted.
> => "I'll pick the best one for the environment" Which, in reality is, "I'll spend a lot of design and implementation effort designing a new one which may or may not improve the measurable, global performance of my new web server because it's not yet at the point where I can benchmark these sorts of things to verify that I'm not wasting a whole ton of effort that could be better spent by deciding that epoll is fast…
It's an idea I had after actually measuring. If it doesn't work then I tried something out. What you really should be getting from it though is that epoll is not faster. It is not O(1). It is not faster on smaller vs. larger lists of FDs. Pretty much all the things you were told as advantages of epoll are total crap. The only advantage of epoll is it's O(N=active) when poll is O(N=total). That's it. So at a minimum I…
I just wanted to say that it is not an unquestionable design decision.
Rock on with the superpoll, I hope it's awesome and very successful.