BoostIntro: Boost provides free peer-reviewed portable C++ source libraries.homepage: boost.orgguide: boost.org/doc
ZeroMQIntro: ZeroMQ (also known as ØMQ, 0MQ, or zmq) looks like an embeddable networking library but acts like a concurrency framework. It gives you sockets that carry atomic messages across various transports like in-process, inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fan-out, pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous message-processing tasks. It has a score of language APIs and runs on most operating systems.Repo: zeromq/cppzmqhomepage: orgguide: zeromq.org
libeventIntro: The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. Furthermore, libevent also support callbacks due to signals or regular timeouts.Repo: libevent/libeventhomepage: orgguide: zeromq.org
libuvIntro: libuv is a multi-platform support library with a focus on asynchronous I/O. It was primarily developed for use by Node.js, but it's also used by Luvit, Julia, uvloop, and others.Repo: libuv/libuvhomepage: orgguide: libuv.org/en/v1
LuaJITIntro: LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.Repo: LuaJIT/LuaJIThomepage: org
protobufIntro: Protocol Buffers (a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.Repo: protocolbuffers/protobufhomepage: devguide: dev/getting-started/cpptutorialCPP Install: protocolbuffers/protobuf/blob/main/src/README.md
RapidJSONIntro: A fast JSON parser/generator for C++ with both SAX/DOM style APIRepo: Tencent/rapidjson/homepage: org