Expand description
uvth is a library that provides a efficient threadpool as an alternative to the threadpool crate.
uvth is more efficient and has less overhead than the threadpool crate. Benchmarks can be found in the README.
Structs§
- Thread
Pool - A somewhat basic but efficient implementation of a threadpool. A threadpool is a classic primitive for parallel computation. It manages a set of worker threads that you can spawn tasks on. The pool manages scheduling of those tasks so you don’t have to think about it.
- Thread
Pool Builder - A factory for configuring and creating a ThreadPool.