ThreadPool icon indicating copy to clipboard operation
ThreadPool copied to clipboard

A fastest, exception-safety and pure C++17 thread pool.

Results 3 ThreadPool issues
Sort by recently updated
recently updated
newest added

Thank you for writing and publishing this thread pool implementation. It seems like a glaring hole in the C++ STL / Boost etc. As it stands std::async is totally unusable...

enhancement

Hello there, I'm developing a software which going to process heavy network traffics. (so many short-lived network sessions) And I have difficulty to select a good threadpool library for my...

enhancement

change example.cpp pool size to 1024 ``` using namespace std; nThread::CThreadPool tp{1024}; queue que; ``` and running the test. get stuck as following output ``` add - thread 752 wait...

help wanted