ThreadPool
ThreadPool copied to clipboard
A fastest, exception-safety and pure C++17 thread pool.
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...
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...
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...