Multithreading in Golang with Goroutine

A guide on how to handle multithreading in Golang using Goroutine, allowing efficient parallel processing and CPU optimization.

In this article, we will explore how to use Goroutine to implement multithreading in Golang. Goroutine enables us to perform multiple tasks concurrently in an efficient and straightforward manner.

Golang code

package main

import (
	"fmt"
	"time"
)

// Function to handle the task
func printNumbers() {
	for i := 1; i <= 5; i++ {
		fmt.Printf("Number: %d\n", i)
		time.Sleep(500 * time.Millisecond)
	}
}

func printLetters() {
	for i := 'A'; i <= 'E'; i++ {
		fmt.Printf("Letter: %c\n", i)
		time.Sleep(500 * time.Millisecond)
	}
}

func main() {
	// Launching two Goroutines
	go printNumbers()
	go printLetters()

	// Keep the program running while Goroutines execute
	time.Sleep(3 * time.Second)
	fmt.Println("Multithreading with Goroutine completed!")
}

Detailed explanation

  • Functions printNumbers and printLetters: These functions print numbers and letters, respectively.
  • go printNumbers() and go printLetters(): Launch two Goroutines to execute these functions concurrently.
  • time.Sleep(3 * time.Second) in main(): Keeps the program running for 3 seconds to allow the Goroutines to complete their tasks before the program exits.

System Requirements:

  • Golang version 1.15 or later

How to install Golang:

Tips:

  • Use Goroutines for asynchronous tasks or parallel processing to optimize performance.
  • Employ tools like sync.WaitGroup to manage Goroutines when handling complex concurrent tasks.


Related

How to open the Notepad application using Golang

A guide on how to use the `os/exec` package in Golang to open the Notepad application on Windows. This is a practical example of how to call and run external programs from a Go program.
How to Split a String in Golang Using the Split function

This article explains how to use the `Split` function in Go (Golang) to break a string into smaller substrings based on a delimiter. It's a common operation in Go programming when dealing with strings.
How to Automatically Log in to a Website Using Selenium with Chrome in Golang

A guide on how to use Selenium in Golang to automatically log in to a website using the Chrome browser. This article provides specific code examples and detailed explanations of each step.
How to compare two slices of bytes in Golang

This article explains how to compare two byte slices in Golang. Golang provides built-in methods and libraries to easily and accurately compare two byte slices.
How to Get JSON Data from API Using Golang

This article guides you on how to retrieve JSON data from an API using the Golang programming language, helping you better understand how to interact with web services.
Create a Simple Chat Application Using Socket.IO in Golang

A step-by-step guide to building a simple chat application using Socket.IO in Golang, helping you understand how real-time communication works in web applications.
Slices in Golang: Usage and examples

This article explains how to work with slices in Golang, including how to declare, access, and manipulate slices—a flexible way to handle arrays more efficiently in Go.
JSON Web Token Authentication with Golang

A guide on how to implement JSON Web Token (JWT) authentication in a Golang application. This article details how to create, sign, and verify JWTs to secure an API.
How to Post Data to API Using Golang

This article guides you on how to send data to an API using the POST method in Golang, helping you better understand how to interact with web services.
Send JavaScript code to a website using Golang and Selenium

A guide on how to use Selenium in Golang to send JavaScript code to a website on the Chrome browser. The article provides specific code and detailed explanations.

main.add_cart_success