-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use io_uring? #100
Comments
I've been thinking about this as well, |
The decision here is going to be effected by whether we want to support windows or not. I'd be fine with linux only but there has been some interest in bringing cratetorrent to windows, so it's unclear whether this makes sense going forward. I would very much like to have cratetorrent as a base to experiment with Maybe there could be support for both windows and |
I'm currently writing a torrent client in C++ which uses io_uring (school coursework). I use it for both networking and file system operations. I must say that the experience has been great so far. |
@ArniDagur sounds interesting. Would you mind digging into the architecture of your torrent client with regard to how it uses io_uring? |
It might be interesting to use
io_uring
for asynchronous IO. It is Linux specific, but so ispwritev
andpreadv
.The text was updated successfully, but these errors were encountered: