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
In https://stjepang.github.io/2019/01/29/lock-free-rust-crossbeam-in-2019.html, @stjepang mentions a few pieces that may be relevant to bus. Specifically, Backoff might be a good substitute for parking_lot::SpinWait, and CachePadded might buy us some better performance in certain cases.
bus
Backoff
parking_lot::SpinWait
CachePadded
The text was updated successfully, but these errors were encountered:
Parker may also be a good thing to use instead of our thread::Thread.
Parker
thread::Thread
Sorry, something went wrong.
No branches or pull requests
In https://stjepang.github.io/2019/01/29/lock-free-rust-crossbeam-in-2019.html, @stjepang mentions a few pieces that may be relevant to
bus
. Specifically,Backoff
might be a good substitute forparking_lot::SpinWait
, andCachePadded
might buy us some better performance in certain cases.The text was updated successfully, but these errors were encountered: