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
Both thread pool and a single-threaded executor can't properly idle because of hard coded 1 millisecond interval for polling:
fibers-rs/src/executor/thread_pool.rs
Line 105 in 84b09e4
fibers-rs/src/executor/in_place.rs
Line 71 in 84b09e4
Timeouts should only be specified while polling when there are active timers running.
The text was updated successfully, but these errors were encountered:
This busy waiting results in high CPU usage. Are there any plans for turning this into a true async library so that it uses near-zero CPU when idle?
Sorry, something went wrong.
No branches or pull requests
Both thread pool and a single-threaded executor can't properly idle because of hard coded 1 millisecond interval for polling:
fibers-rs/src/executor/thread_pool.rs
Line 105 in 84b09e4
fibers-rs/src/executor/in_place.rs
Line 71 in 84b09e4
Timeouts should only be specified while polling when there are active timers running.
The text was updated successfully, but these errors were encountered: