Implementing a High-Performance Logger in C++ for Distributed Applications
In any distributed system, logging is an important part as it allows for finding bugs, tracking how services are working and figuring out why things may fail. But the logger itself must be fast, thread-safe, and not block other parts/ add delay to your program. This article will go over different techniques you can use …
Implementing a High-Performance Logger in C++ for Distributed Applications Read More »