b/learning-path by booms

Go Systems Programming

This post was published 8 years ago. Download links are most likely obsolete. If that's the case, try asking the uploader to re-upload.

Go Systems Programming

466 pages | 4 Nov. 2017 | English | ASIN: B0718WWM6Y | PDF | 5 MB

Key Features
Learn how to write system's level code in Golang, similar to Unix/Linux systems code
Ramp up in Go quickly
Deep dive into Goroutines and Go concurrency to be able to take advantage of Go server-level constructs
Book Description
Go is the new systems programming language for Linux and UNIX systems. It is also the language in which some of the most prominent Cloud-level systems have been written, for instance Docker et al. Where C programmers used to rule, Go programmers are gaining considerable traction to write highly optimized systems programming code.

Created by the original designers of C and UNIX, it expands the systems programmers toolkit to add a mature, clear programming language. Threads and networking code, as well as traditional systems application become easier to write since pointers are not relevant and garbage collection has been taken away the most problematic area for low-level systems code: memory management.

This book opens up the world of high-performant systems to the beginning Go programmer. It does not get stuck on single systems or even system types, but tries to expand the original teachings from Unix system's level programming to all types of servers, the cloud and the web.

What you will learn
Go, the language, from the standpoint of a developer conversant with Docker, Unix, Linux etc.
Understanding Goroutines, the lightweight threads used for systems and concurrent applications
How to translate Unix and Linux systems code to Golang code
How to write lightweight, fast servers and other server code
Dive into concurrency with Go
Write low-level networking code