Book Image

System Programming Essentials with Go

By : Alex Rios
5 (1)
Book Image

System Programming Essentials with Go

5 (1)
By: Alex Rios

Overview of this book

Alex Rios, a seasoned Go developer and active community builder, shares his 15 years of expertise in designing large-scale systems through this book. It masterfully cuts through complexity, enabling you to build efficient and secure applications with Go's streamlined syntax and powerful concurrency features. In this book, you’ll learn how Go, unlike traditional system programming languages (C/C++), lets you focus on the problem by prioritizing readability and elevating developer experience with features like automatic garbage collection and built-in concurrency primitives, which remove the burden of low-level memory management and intricate synchronization. Through hands-on projects, you'll master core concepts like file I/O, process management, and inter-process communication to automate tasks and interact with your system efficiently. You'll delve into network programming in Go, equipping yourself with the skills to build robust, distributed applications. This book goes beyond the basics by exploring modern practices like logging and tracing for comprehensive application monitoring, and advance to distributed system design using Go to prepare you to tackle complex architectures. By the end of this book, you'll emerge as a confident Go system programmer, ready to craft high-performance, secure applications for the modern world.
Table of Contents (24 chapters)
Free Chapter
1
Part 1: Introduction
4
Part 2: Interaction with the OS
10
Part 3: Performance
13
Part 4: Connected Apps
17
Part 5: Going Beyond

Part 1: Introduction

In this part, we will explore the foundational aspects of using Go for system programming. You will learn about the best practices in managing concurrency, and ensuring efficient cross-platform development. This section provides a closer look at why Go is a powerful choice for building high-performance system software and how to leverage its features to support real-world scenarios.

This part has the following chapters: