yedf2 /
handy
🔥简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework
Loading repository data…
progschj / repository
A simple C++11 Thread Pool implementation
A simple C++11 Thread Pool implementation.
Basic usage:
// create thread pool with 4 worker threads
ThreadPool pool(4);
// enqueue and store future
auto result = pool.enqueue([](int answer) { return answer; }, 42);
// get result from future
std::cout << result.get() << std::endl;
Selected from shared topics, language and repository description—not editorial ratings.
yedf2 /
🔥简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework
CLIUtils /
CLI11 is a command line parser for C++11 and beyond that provides a rich feature set with a simple and intuitive interface.
eidheim /
A very simple, fast, multithreaded, platform independent HTTP and HTTPS server and client library implemented using C++11 and Boost.Asio. Created to be an easy way to make REST resources available from C++ applications.
eidheim /
A very simple, fast, multithreaded, platform independent WebSocket (WS) and WebSocket Secure (WSS) server and client library implemented using C++11, Boost.Asio and OpenSSL. Created to be an easy way to make WebSocket endpoints in C++.
catchorg /
A simple to use, composable, command line parser for C++ 11 and beyond
bfgroup /
A simple to use, composable, command line parser for C++ 11 and beyond