Course Information
- Available
- *The delivery and distribution of the certificate are subject to the policies and arrangements of the course provider.
Course Overview
Learn the advantages and pitfalls of concurrent programming with the Go programming language
Go, often referred to as Golang, is well-known for making it remarkably easy to work with concurrency. In order to make a particular function run concurrently, all we have to do is prepend the word "go" to the function call, and it cheerfully runs in the background, as a GoRoutine. Go's built in scheduler takes are of making sure that a given GoRoutine runs when it should, and as efficiently as it can.
However, this does not mean that working with concurrency is simple in Go—thread safe programming takes careful planning, and most importantly it requires that developers have an absolutely solid understanding of how Go deals with concurrency.
In the standard library, Go offers us several ways of dealing with concurrently running parts of our program, right in the standard library: sync.WaitGroup, which lets us wait for tasks to finish; sync.Mutex, which allows us to lock and unlock resources, so that no two GoRoutines can access the same memory location at the same time; and finally, Channels, which allow GoRoutines to send and receive data to and from each other.
Go's approach to concurrency is fairly straightforward, and is more or less summed up this mantra: Don't communicate by sharing memory; instead, share memory by communicating. Channels are the means by which we usually share memory by communicating.
In this course, we'll cover the use of WaitGroups, Mutexes, and Channels, and we'll do so in detail. We'll also cover some of the problems inherent in concurrency, including early program termination and race conditions. Initially, we'll gain a good understanding of how these things work by solving some of the classic problems found in the field of computer science, including the Dining Philosophers, the Producer/Consumer problem, and the Sleeping Barber. These problems are classics for a reason: they force a developer to figure out the best approach to working with code that run concurrently, or in parallel.
Finally, we'll finish the course out with a more "real-world" problem, where we have to register a customer for some kind of subscription service, and take care of invoicing, registration, and all the things necessary to get a new customer up and running. We'll do so, naturally, as quickly as we can by dividing the necessary tasks up into smaller tasks, and having them run concurrently.
Please note that this course requires you to download Docker Desktop from Docker. If you are a Udemy Business user, please check with your employer before downloading software.
Course Content
- 10 section(s)
- 86 lecture(s)
- Section 1 Introduction
- Section 2 Goroutines, the go keyword, and WaitGroups
- Section 3 Race Conditions, Mutexes, and an Introduction to Channels
- Section 4 A Classic Problem: The Dining Philosophers
- Section 5 Channels, and another classic: The Sleeping Barber problem
- Section 6 Final Project - Building a Subscription Service
- Section 7 Sending Email Concurrently
- Section 8 Registering a User and Displaying Plans
- Section 9 Adding Concurrency to Choosing a Plan
- Section 10 Testing
What You’ll Learn
- Learn about the various ways Go makes working with concurrent programing simple
- Understand how concurrency works, and its advantages and pitfalls
- Learn how WaitGroups, Mutexes, and channels work
- Master concurrency by working with classic computer science problems, and by building a real-world example
Skills covered in this course
Reviews
-
AAdelino Casas
Tempo gasto na logica de cada programa, sem explicar logo a solução. Em vez de fazer algo relativamente simples para introduzir e explicar a tecnologia para a qual se com prou este curso, perde-se qualidade em andar à volta de floreados. Este autor faz isto constantemente. O QUE É PRECISO É QUE EXPLIQUE OS CONCEITOS NÃO ANDAR A ENTRETER-SE EM LOGICAS PATETAS
-
DDiego Alejandro Posada Llano
Excellent course!
-
MMurad Zulfugarov
Dirty code and behind the scenes change to the source code that makes it super confusing to follow up. Trash course - don't waste your time.
-
JJayprakash Chawla
the instructor did not make understand channels well