Book Image

Hands-on Concurrency with Go [Video]

By : Leonora Tindall
5 (1)
Book Image

Hands-on Concurrency with Go [Video]

5 (1)
By: Leonora Tindall

Overview of this book

This course presents you a hands-on look at creating concurrent and parallel programs using the Go programming language. From a blazing-fast garbage-collected memory model to effortless, lightweight Goroutines to speedy communication using in-memory channels, Go makes powerful concurrency primitives available which are unparalleled in other languages. This course provides you with both the theoretical and practical knowledge you will need to apply them to your own software. This course covers the basics of concurrency and parallelism in Go, along with in-depth looks at the three types of concurrent and parallel program models and an introduction to concurrent architecture. This course will show you the multitude of tools available in Go for implementing concurrent systems, including goroutines, blocking channels, buffered channels, and non-blocking in-memory communication.You will build multiple concurrent applications and examine the benefits and drawbacks of the various concurrency options available. By the end of the course, you will be able to rapidly and confidently identify concurrent and parallel problems and apply the Go language concurrency constructs to solve them. The code bundle for this video course is available at: https://github.com/PacktPublishing/Hands-on-Concurrency-with-Go-video
Table of Contents (6 chapters)
Chapter 5
Task Parallelism
Content Locked
Section 3
A Reddit and HackerNews Search Engine
Design a Reddit and HackerNews search engine. - Discuss the requirements for a search engine - Determine how to implement at web server in Go - Determine how to integrate the Hacker News and Reddit client