Crates.io | lft-rust |
lib.rs | lft-rust |
version | 0.1.0 |
source | src |
created_at | 2022-06-04 00:18:25.745482 |
updated_at | 2022-06-04 00:18:25.745482 |
description | A lock-free threadpool implementation. We provide a traditional single queue threadpool and a lock-free threadpool |
homepage | https://github.com/elite-sheep/lft-rust |
repository | https://github.com/elite-sheep/lft-rust |
max_upload_size | |
id | 599516 |
size | 66,677 |
A lock-free threadpool implementation in Rust. Research oriented. We developed an interesting idea to mitigate the performance drop introduced by the use of locks in Rust. For details, please refer to our technical reports.
This project is built upon Rust 1.57.0
. To build this project, please run the following
command:
cargo build
To build a release version of this project, please run:
cargo build --release
We also provide some examples for better using this project, to run an example:
RUST_LOG=trace cargo run --example hello_world
I plan to implement the following features: