This third edition of the bestselling guide to advanced Go programming has been overhauled and expanded to cover RESTful servers, the WebSocket protocol, and Go generics
Use real-world exercises to build high-performance network servers and powerful command line utilities
Packed with practical examples and utilities to apply to your own development work and administrative tasks
Get clear explanations about Go nuances and features to simplify Go development
Description
Mastering Go is the essential guide to putting Go to work on real production systems. This freshly updated third edition includes topics like creating RESTful servers and clients, understanding Go generics, and developing gRPC servers and clients.
Mastering Go was written for programmers who want to explore the capabilities of Go in practice. As you work your way through the chapters, you’ll gain confidence and a deep understanding of advanced Go concepts, including concurrency and the operation of the Go Garbage Collector, using Go with Docker, writing powerful command-line utilities, working with JavaScript Object Notation (JSON) data, and interacting with databases. You’ll also improve your understanding of Go internals to optimize Go code and use data types and data structures in new and unexpected ways.
This essential Go programming book will also take you through the nuances and idioms of Go with exercises and resources to fully embed your newly acquired knowledge.
With the help of Mastering Go, you’ll become an expert Go programmer by building Go systems and implementing advanced Go techniques in your projects.
Who is this book for?
You’ll need to know the basics of Go before you get started with this book, but beyond that, anyone can sink their teeth into it. It’s written primarily for Go programmers who have a bit of experience with the language and want to become expert practitioners.
What you will learn
Use Go in production
Write reliable, high-performance concurrent code
Manipulate data structures including slices, arrays, maps, and pointers
Develop reusable packages with reflection and interfaces
Become familiar with generics for effective Go programming
Create concurrent RESTful servers, and build gRPC clients and servers
The overall quality of the examples and explanations is very bad. The examples are poorly chosen, artificially constructed to show some points but far from any real world usage. This book would have profited from a much more thorough review and better examples.This is actually the very first technical book ever where I checked whether it was possible to return it, because I actually felt like I wasted time reading it.
Amazon Verified review
Samuel StegallSep 18, 2022
5
Mastering Go is a book that I picked up recently, in order to develop better APIs than I was able to with Node.js. Mastering Go is designed as a book that teaches Go holistically, first teaching the fundamentals of the language, then teaching common software engineering concepts as they relate to Go, such as multithreading, testing, profiling, and writing APIs. I really liked the exercises and additional resources that the book provided at the end of each chapter, because they helped me go from writing the bare-minimum amount of Go code to cover each concept, to writingmany programs with Go to gain a deeper understanding of the language.With this book, I have learned quite a bit about Go. I have learned how to make REST APIs. With some additional study, I've even learned how to connect with databases in order to have a persistent data store linked to my API. Overall, learning Go with Mastering Go has been a pleasure, because it has taught me a new programming language, allowed me to learn exactly what I intended regarding REST APIs, and now I have a new tool in my tool belt. There's also a lot about other networking services in the book, including writing TCP and UDP clients, and working with gRPC. I believe that this information is going to come in handy for me down the line.I plan on using Go to create my own full-stack video streaming site for software demos, and learning the language via Mastering Go is going to make it fairly simple to create the REST API side of this app. I feel comfortable using Go for production-grade applications, and I hope to use it in my projects in the future.
Amazon Verified review
Krishnan RaghavanAug 17, 2022
5
Mastering Go book is for people who want to take their understanding of Go Programming language to the next level. This book is for intermediate Go programmers who want to either brush up on their Go skills and also for experienced programmers who want to take their skills to the next level. I consider myself to be a Go beginner but still was able to follow and get a better understanding of the programming language by following the book. This being the third edition of the book, the author has ensured that there is a proper mix of theory and practical (hands-on) approach to make the learning more enjoyable.The book starts by covering the basic introduction of the Go programming language in the first chapter. By the end of the chapter, a small basic phone book application is developed which is then refined, referenced and enhanced throughout the book. The next chapters cover the basic data types, arrays and slices that allow you to group data of the same data types. This chapter also introduces pointers and constants. It also covers how to work with date and time. These concepts though basic are very important as they give a good understanding of how to play with data types. The third chapter covers more advanced data types like map, structure and struct keyword. This chapter also covers how to work with CSV files. Every programmer at some point in time will need to work with CSV files and hence would request the readers to not skip this part. The first three chapters will help the reader understand basic data types available in the Go programing language.The next chapter introduces the reader to concepts of Reflection and Interfaces which are functions attached to data types. The chapter also includes the use of the sort. Interface for sorting slices, the use of the empty interface, type assertions, type switches, and the error data type. The next chapter is about Go Packages and Functions. A very interesting topic about the use of GitLab Runners and GitHub Actions for automation is covered in this chapter. This chapter also shows you how to create a docker image for a Go Binary.The first 5 chapters basically cover the basics of Go that are very essential to understanding how to program using Go Programming Language. The next few chapters cover more advanced topics like how to use Go Programming Language to create services and tools.Chapter 6 covers system programming in Unix using Go. It includes subjects such as working with command-line arguments, handling UNIX signals, file input and output, and the io.Reader and io.Writer interfaces, and the use of the viper and cobra packages. Additionally, it covers topics like how to work with JSON, XML and YAML files. Chapter 2 covers how to work with CSV files and this chapter covers other ways of interacting with data available in different formats. Chapter 7 is about Go Concurrency that covers topics like goroutines, channels and pipelines.Chapter 8 is about developing web servers and web services, creating web clients and creating file servers. Chapter 9 is about TCP/IP and Web Sockets. This chapter covers net package, TCP/IP, andthe TCP and UDP protocols, as well as UNIX sockets and the WebSocket protocol. It includes the development of a lot of network servers and clients.Chapter 10 introduces the reader to working with REST API's. This chapter covers topics that help the reader understand how to define REST API's and develop RESTful Servers. Chapter 11 is about Code Testing and Profiling.Chapter 12 covers working with gRPC in Go.gRPC is an alternative to RESTful services and also covers teaches the reader how to define the methods and the messages of a gRPC service, how to translate them into Go code, and how to develop a server and a client for that gRPC service.Chapter 13 is about Go Generics and how to use the new syntax to write generic functions and define generic data types.To get out the best from this book, the reader should ideally try and practices the exercises at the end of each chapter. This ensures the understanding of the topics covered in the chapter. Also, additional resources at the end of each chapter are very useful for gaining additional knowledge about the topic.Kudos to Mihalis Tsoukalos for writing such a wonderful book.
Amazon Verified review
Sunny MittalJan 24, 2022
5
Mastering Go is truly a great resource for learning and mastering the Go programming language. I don't use Go professionally but have always wanted to really learn it well to no avail. I decided to finally sit down and spend some focused time with this book and few distractions to patch gaps in the knowledge I've acquired over the years and have finally been able to grasp concepts that evaded me previously. I'm particularly interested in Go's concurrency model which seemed so mysterious before but has finally clicked with the help of this book. One piece of advice for anyone using this book to learn Go is to download the source code when it's omitted for brevity in a chapter but type up as much as you can on your own while reading the relevant explanations given by the authors. What I really love about Mastering Go is that code is not shown in its entirety and then explained from the top down; it's explained (mostly) line by line which helps a lot when coming from a language like JavaScript or Ruby (like me), which oftentimes can be explained top down with no loss of understanding. Go's a different beast which is what makes it such a great language to learn. Like any language, it requires dedication to really learn properly, but the Go team has managed to create an amazingly terse language to solve a variety of programming challenges, keeping performance in mind all along. I highly recommend learning Go and absolutely recommend Mastering Go as a resource in that adventure.
Amazon Verified review
Damian Wojslaw D-netJan 23, 2022
5
While the title is "Mastering Go", this book covers so many topics of said programming language, that it actually is rather an introduction. Still, I am very glad I have bought it. I owned the previous edition and I have to say it improves over it in regards to the organization. It also introduces generics, which will be the next big thing in Go.Don't expect to "master" the language, it can only be done by writing the code. But expect to be able to use this book as a good guide.
Mihalis Tsoukalos holds a BSc in Mathematics from the University of Patras and an MSc in IT from University College London, UK. His books, Go Systems Programming and Mastering Go, have become must-reads for Unix and Linux systems professionals. He enjoys writing technical articles and has written for Sys Admin, MacTech, C/C++ Users Journal, USENIX ;login:, Linux Journal, Linux User and Developer, Linux Format, and Linux Voice. His research interests include time series data mining, time series indexing, and databases.
Economy: Delivery to most addresses in the US within 10-15 business days
Premium: Trackable Delivery to most addresses in the US within 3-8 business days
UK:
Economy: Delivery to most addresses in the U.K. within 7-9 business days. Shipments are not trackable
Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days! Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands
EU:
Premium: Trackable delivery to most EU destinations within 4-9 business days.
Australia:
Economy: Can deliver to P. O. Boxes and private residences. Trackable service with delivery to addresses in Australia only. Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro Delivery time is up to 15 business days for remote areas of WA, NT & QLD.
Premium: Delivery to addresses in Australia only Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.
India:
Premium: Delivery to most Indian addresses within 5-6 business days
Rest of the World:
Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days
Asia:
Premium: Delivery to most Asian addresses within 5-9 business days
Disclaimer: All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.
Unfortunately, due to several restrictions, we are unable to ship to the following countries:
Afghanistan
American Samoa
Belarus
Brunei Darussalam
Central African Republic
The Democratic Republic of Congo
Eritrea
Guinea-bissau
Iran
Lebanon
Libiya Arab Jamahriya
Somalia
Sudan
Russian Federation
Syrian Arab Republic
Ukraine
Venezuela
What is custom duty/charge?
Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.
Do I have to pay customs charges for the print book order?
The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.
A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.
How do I know my custom duty charges?
The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.
For example:
If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order?
Cancellation Policy for Published Printed Books:
You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.
Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.
What is your returns and refunds policy?
Return Policy:
We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:
If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.
On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.
What tax is charged?
Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.
What payment methods can I use?
You can pay with the following card types:
Visa Debit
Visa Credit
MasterCard
PayPal
What is the delivery time and cost of print books?
Shipping Details
USA:
'
Economy: Delivery to most addresses in the US within 10-15 business days
Premium: Trackable Delivery to most addresses in the US within 3-8 business days
UK:
Economy: Delivery to most addresses in the U.K. within 7-9 business days. Shipments are not trackable
Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days! Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands
EU:
Premium: Trackable delivery to most EU destinations within 4-9 business days.
Australia:
Economy: Can deliver to P. O. Boxes and private residences. Trackable service with delivery to addresses in Australia only. Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro Delivery time is up to 15 business days for remote areas of WA, NT & QLD.
Premium: Delivery to addresses in Australia only Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.
India:
Premium: Delivery to most Indian addresses within 5-6 business days
Rest of the World:
Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days
Asia:
Premium: Delivery to most Asian addresses within 5-9 business days
Disclaimer: All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.
Unfortunately, due to several restrictions, we are unable to ship to the following countries: