cpp-pool 是一个 C++17 资源池三件套:泛型数据库连接池(RAII 借用 + 健康检查)、内存池(无锁栈 + Slab 多尺寸 + TLS 缓存)、弹性线程池(暂停/恢复/WaitAll)。均单文件、零外部依赖、仅需 pthread。
-
Updated
Jul 24, 2026 - C++
cpp-pool 是一个 C++17 资源池三件套:泛型数据库连接池(RAII 借用 + 健康检查)、内存池(无锁栈 + Slab 多尺寸 + TLS 缓存)、弹性线程池(暂停/恢复/WaitAll)。均单文件、零外部依赖、仅需 pthread。
华工大一的第一个开源尝试,这是一个轻量级的 C++ 有向图模板库。通过指针映射技术确保了图结构的稳定性,同时支持 DOT 格式导出。该库提供了类似 STL 的迭代器接口并具备类型安全特性。A lightweight C++ template library for directed graphs. It uses adjacency lists with std::vector and std::set, featuring pointer mapping for stability and DOT export. It offers STL-like iterators and type safety, making it perfect for algorithm learning.
cpp-ipc is a high-performance C++17 IPC library using POSIX shared memory and lock-free SPSC/MPSC/MPMC queues. All data-plane ops run in userspace, with futex used only for blocking. SPSC achieves sub-200ns latency with zero CAS. Compile-time QueueForMode dispatch, offset-based pointers, five wait strategies
Utility Class and Functions For C++
A libre infrastructure, utilities and helpers base library for C++17-based projects. Developed within the scope of Degoras Project and used in the rest of Degoras organization related projects.
To associate your repository with the cpp-utils topic, visit your repo's landing page and select "manage topics."