- Mastering C# Concurrency
- Eugene Agafonov Andrew Koryavchenko
- 266字
- 2021-07-09 21:26:04
Preface
Recent C# and .NET developments involve implicitly using asynchrony and concurrency, even when you are not aware of them. This can lead to further problems since many details are usually hidden inside the C# language infrastructure and the .NET base class library APIs. To avoid problems and to be able to create robust applications, a developer has to know exactly what is going on under the hood of asynchrony in .NET.
Besides this, it is important to understand your goals when writing a concurrent application. If it is running on the client, it is usually a good thing to use all the computational resources available so that the application becomes as fast as possible. This involves effective multiple CPU cores usage, and thus requires parallel programming skills. However, if the application is running on the server, it is more important that the server supports as many clients as possible, than the performance of a concrete client request processing. This requires a programmer to distinguish asynchrony from multithreading and have an understanding of scalability.
All these topics will be covered in this book, providing you with enough information to achieve a solid understanding of asynchronous and parallel programming in C#. We will start with basic multithreading concepts, review common concurrent programming problems and solutions, and then we will go through C# and .NET support for writing concurrent applications. Further in the book, we will cover concurrent data structures and patterns, and we will review client-side and server-side concurrency issues. At the end of the book, we will outline the basic principles for creating robust concurrent programs.
- Dynamics 365 for Finance and Operations Development Cookbook(Fourth Edition)
- Practical DevOps
- Learning Linux Binary Analysis
- 精通API架構:設計、運維與演進
- Java Web程序設計
- Unity 2D Game Development Cookbook
- INSTANT Sinatra Starter
- PHP+MySQL+Dreamweaver動態網站開發從入門到精通(第3版)
- Python語言實用教程
- 圖數據庫實戰
- 基于SpringBoot實現:Java分布式中間件開發入門與實戰
- .NET 4.5 Parallel Extensions Cookbook
- Java Web開發實例大全(基礎卷) (軟件工程師開發大系)
- Node.js 6.x Blueprints
- Hands-On Data Visualization with Bokeh