[][src]Crate uvth

uvth is a library that provides a efficient threadpool as an alternative to the threadpool crate.

uvth is more efficient and has less overhead. Benchmarks can be found in the README.

Structs

ThreadPool

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.