2 Repos
Memory management techniques for tracking backend object lifecycles.
Distinct from Request Lifecycle Managers: Focuses on reference counting for memory safety in high-concurrency backends, distinct from general request lifecycle management.
Explore 2 awesome GitHub repositories matching web development · Reference Counting. Refine with filters or upvote what's useful.
Memcached is a high-performance, distributed, in-memory key-value storage and request routing engine. It functions as a volatile data store designed to accelerate dynamic applications by caching objects in RAM, thereby reducing backend database load and providing sub-millisecond response times. The system utilizes a specialized architecture that organizes memory into fixed-size slabs to minimize fragmentation and maximize throughput for high-concurrency workloads. The project distinguishes itself through a multi-threaded, lock-friendly design that scales across CPU cores and supports complex
Uses pool-based reference counting to ensure safe memory management and lock-free execution during high-concurrency operations.
NodeGit is a native Node.js binding library that wraps the libgit2 C API, providing direct Git repository operations from JavaScript without shelling out to the Git command-line interface. It exposes Git operations such as cloning remote repositories, opening local repositories, reading file contents from specific commits, and walking through commit history, all through a Promise-based asynchronous API that prevents event loop starvation by offloading blocking operations to a worker pool. The library distinguishes itself by bridging the C/JavaScript boundary through N-API, with reference-coun
Manages Git object lifetimes through reference counting to prevent memory leaks across the C/JS boundary.