You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Has it ever been considered to use a different polling method besides select() such as poll() or epoll()? I see the implementation changed slightly at version 0.11.0 to start abstracting some stuff out of poll_client() and moving it into some implementation methods. Perhaps there aren't any substantial performance gains to be had by changing but from my understanding the Linux community has been slowly moving away from using select() in favor of one of the others due to slightly better performance and the ability to handle potentially larger file descriptor values.
The text was updated successfully, but these errors were encountered:
Has it ever been considered to use a different polling method besides
select()
such aspoll()
orepoll()
? I see the implementation changed slightly at version 0.11.0 to start abstracting some stuff out ofpoll_client()
and moving it into some implementation methods. Perhaps there aren't any substantial performance gains to be had by changing but from my understanding the Linux community has been slowly moving away from usingselect()
in favor of one of the others due to slightly better performance and the ability to handle potentially larger file descriptor values.The text was updated successfully, but these errors were encountered: