selector/io-select using threads to wait #132
Replies: 1 comment 1 reply
-
In general, it is extremely hard to emulate You are correct, the fiber is not passed in as the first argument. That is a small interface oversight which we could fix by checking the arity of the method. Alternatively, |
Beta Was this translation helpful? Give feedback.
-
With fiber scheduler support in ruby 3.2 and above, schedulers like async rely io-events implementation of io-select (and other methods). Io-select does not take in the calling fiber parameter (like other methods such as io-wait, io-read etc), and also falls back to a new thread to wait for IOs. Wouldn't this defeat the purpose of setting up an event loop and cause the thread to block?
https://github.com/socketry/io-event/blob/main/lib/io/event/selector/select.rb#L170
Beta Was this translation helpful? Give feedback.
All reactions