other Featured
Distributed Cache
This is a high-performance C++20 distributed cache designed to overcome the concurrency and eviction limitations of Redis and Memcached. It features a striped locking architecture for fine-grained reader-writer access, built-in request coalescing to prevent cache stampedes, and a sophisticated LFU-based three-phase eviction strategy. Capable of 3.66M ops/sec with sub-microsecond p99 latency, it leverages modern C++ features like shared_mutex and shared_future to deliver zero-cost abstractions and deterministic performance.
View Project