Registry / utility / slick-object-pool

slick-object-pool

JSON →
library0.1.3vcpkgunverified

A high-performance, lock-free object pool for C++20 with multi-threading support.

vcpkg install slick-object-pool
INSTALL
IMPORT
SIG · SLICK-OBJECT-POOL
S
slick-object-pool
utilitycppv0.1.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

slick/object_pool.hpp
#include <slick/object_pool.hpp>

Acquire and release an integer from the object pool

#include <slick/object_pool.hpp> #include <iostream> int main() { slick::object_pool<int> pool(10); auto obj = pool.acquire(); *obj = 42; std::cout << *obj << std::endl; pool.release(obj); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.1.3latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources

No resource links recorded.

slick-object-pool — pip install slick-object-pool · libregistry