We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
tokio::fs
https://docs.rs/tokio/latest/tokio/fs/index.html
The text was updated successfully, but these errors were encountered:
I remember reading an article about tokio::fs is slower than std::fs. Ref: https://users.rust-lang.org/t/why-tokio-fs-is-slower-than-std-fs/39610
Sorry, something went wrong.
The async code in the link is slow is because there is no parallelization. The author called .await serially on each entry.
.await
Again. As with all things, we need to benchmark to find out.
No branches or pull requests
https://docs.rs/tokio/latest/tokio/fs/index.html
The text was updated successfully, but these errors were encountered: