#thread-pool #worker-thread #thread #pool #threading #parallelism

blocking-threadpool

A thread pool for running a number of jobs on a fixed set of worker threads

2 stable releases

1.0.1 Nov 15, 2023
1.0.0 Nov 12, 2023

#170 in Concurrency

Download history 359/week @ 2023-12-17 100/week @ 2023-12-24 150/week @ 2023-12-31 131/week @ 2024-01-07 180/week @ 2024-01-14 254/week @ 2024-01-21 262/week @ 2024-01-28 345/week @ 2024-02-04 310/week @ 2024-02-11 889/week @ 2024-02-18 641/week @ 2024-02-25 2052/week @ 2024-03-03 1717/week @ 2024-03-10 1041/week @ 2024-03-17 897/week @ 2024-03-24 2254/week @ 2024-03-31

6,368 downloads per month
Used in 2 crates (via libxcp)

MIT/Apache

48KB
754 lines

blocking-threadpool

A thread pool for running a number of jobs on a fixed set of worker threads, with optional back-pressure for job submission.

This project is a fork of rust-threadpool with back-pressure support added and minor maintenance improvements.

doc.rs

Usage

Add this to your Cargo.toml:

[dependencies]
blocking-threadpool = "1.0"

Memory performance

Rust 1.32.0 has switched from jemalloc to the operating systems allocator. While this enables more plattforms for some workloads this means some performance loss.

To regain the performance consider enabling the jemallocator crate.

Similar libraries

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~425KB