Jump to ratings and reviews
Rate this book

Asynchronous Programming with C++: Build blazing-fast software with multithreading and asynchronous programming for ultimate efficiency

Rate this book
Design and develop high-performance software solutions by using concurrent and asynchronous techniques provided by the most modern features in C++20 and C++23

Key FeaturesLearn how to use modern C++ features, including futures, promises, async, and coroutines to build asynchronous solutionsDevelop cross-platform network and low-level I/O projects with Boost.AsioMaster optimization techniques by understanding how software adapts to machine hardwarePurchase of the print or Kindle book includes a free PDF eBookBook DescriptionAs hardware advancements continue to accelerate, bringing greater memory capacity and more CPU cores, software must evolve to adapt to efficiently use all available resources and reduce idle CPU cycles. In this book, two seasoned software engineers with about five decades of combined experience will teach you how to implement concurrent and asynchronous solutions in C++.

You’ll gain a comprehensive understanding of parallel programming paradigms—covering concurrent, asynchronous, parallel, multithreading, reactive, and event-driven programming, as well as dataflows—and see how threads, processes, and services are related. Moving into the heart of concurrency, the authors will guide you in creating and managing threads and exploring C++’s thread-safety mechanisms, including mutual exclusion, atomic operations, semaphores, condition variables, latches, and barriers. With this solid foundation, you’ll focus on pure asynchronous programming, discovering futures, promises, the async function, and coroutines. The book takes you step by step through using Boost.Asio and Boost.Cobalt to develop network and low-level I/O solutions, proven performance and optimization techniques, and testing and debugging asynchronous software.

By the end of this C++ book, you’ll be able to implement high-performance software using modern asynchronous C++ techniques.

What you will learnExplore the different parallel paradigms and know when to apply themAcquire deep knowledge of thread management and safety mechanismsUnderstand asynchronous programming in C++, including coroutinesLeverage network asynchronous programming by using Boost.Asio and Boost.CobaltAdd proven performance and optimization techniques to your toolboxFind out how to test and debug asynchronous softwareWho this book is forThis book is for developers who have some experience using C++, regardless of their professional field. If you want to improve your C++ skills and learn how to develop high-performance software using the latest modern C++ features, this book is for you.

Table of ContentsParallel Programming ParadigmsProcesses, Threads, and ServicesHow to Create and Manage Threads in C++Thread Synchronization with LocksAtomic OperationsPromises and FuturesThe Async FunctionAsynchronous Programming Using CoroutinesAsynchronous Programming Using Boost.AsioCoroutines with Boost.CobaltLogging and Debugging Asynchronous SoftwareSanitizing and Testing Asynchronous SoftwareImproving Asynchronous Software Performance

615 pages, Kindle Edition

Published November 29, 2024

4 people are currently reading
11 people want to read

About the author

Ratings & Reviews

What do you think?
Rate this book

Friends & Following

Create a free account to discover what your friends think of this book!

Community Reviews

5 stars
0 (0%)
4 stars
5 (100%)
3 stars
0 (0%)
2 stars
0 (0%)
1 star
0 (0%)
Displaying 1 of 1 review
188 reviews
May 1, 2025
Learned a lot with lots of code examples.

Mutexes/locks -> semaphores -> atomics. Atomic does not necessarily mean lock free. Note the memory model and ordering with atomics.

Queues are great for threads and atomics.

Promises are producer, future is the consumer object that waits for the promise to finish.

Coroutines are lightweight threads that are suspended functions (think of generators in Python)
Displaying 1 of 1 review

Can't find what you're looking for?

Get help and learn more about the design.