|
|
|
|
|
by agazso
6112 days ago
|
|
In fact epoll was created specifically because select does not scale well. That is, if you have lots of open connections, and an event happens on one of them you have to iterate all the file descriptors to see which one was active. With epoll, only those descriptors are returned which were active. With 8000/s (as in the tests) this really makes a significant difference. |
|