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
asio supports io_uring.
It's great if libcoro support async file IO (io_uring on Linux, IOCP on Windows etc.), so that read/write yield thread to another coroutine.
The text was updated successfully, but these errors were encountered:
I'm not that familiar with io_uring yet, it seems quite promising but this is definitely a larger task to either:
(a) replace epoll with io_uring -- this solution would mandate a minimum kernel version probably
(b) support both epoll and io_uring - I'm not particularly interested in this approach, I'd rather keep the code simple, I imagine there would be subtle bugs between the two kernel apis and would require a lot of testing and effort to maintain both
asio supports io_uring.
It's great if libcoro support async file IO (io_uring on Linux, IOCP on Windows etc.), so that read/write yield thread to another coroutine.
The text was updated successfully, but these errors were encountered: