Go stands out for its ability to build competing applications simply and efficiently. One of the features that makes it this is Goroutines, one of the most powerful features of the language. If you've worked with other languages, you're probably familiar with threads, but Goroutines are different.
What are Goroutines?
In short, they are functions or methods that run concurrently with other functions or methods. They are lighter than OS threads, so you can create thousands of Goroutines with much less overhead.
What are Threads and why can Goroutines be lighter?
Threads are basically execution units within a process. A process can have multiple threads, all sharing the same memory space but with their own execution stack, which is basically a data structure that stores information about the active functions in a program. OS threads are managed and scaled by the OS, and also have a practical limit of thousands of threads per process and fixed stack size (generally 1MB or more per thread).
Goroutines are "green threads" or user-level threads, managed by the Go runtime, dynamic stack size starting at just 2KB and can expand or decrease according to need. That's why Goroutines can be lighter.
What is Competition and what is the difference from Parallelism?
Concurrency is the act of dealing with several tasks at the same time, while Parallelism executes tasks simultaneously on multiple processors. A bit confusing, but you'll understand better now: Competition involves more structure and organization. See the example below:
Parallelism involves more execution, actually running at the same time, see the example below:
What are Channels?
Channels are communication "channels" between Goroutines. They allow Goroutines to communicate and synchronize their execution. Example of communication between Goroutines using Channels:
func main() { ch := make(chan string) go func() { ch <p>Now let's finish with examples of using Goroutines:<br> </p> <pre class="brush:php;toolbar:false">// 1. Fazendo café e torrada ao mesmo tempo func cafeDaManha() { fmt.Println("Iniciando café da manhã...") // 1º: Aparece primeiro go fazerCafe() // 2º: "Começando a fazer café..." go fazerTorrada() // 3º: "Começando a fazer torrada..." // Espera 5 segundos para tudo ficar pronto time.Sleep(5 * time.Second) fmt.Println("Café da manhã pronto!") // Último: Aparece depois de 5 segundos } func fazerCafe() { fmt.Println("Começando a fazer café...") time.Sleep(3 * time.Second) fmt.Println("Café pronto!") // 4º: Aparece após 3 segundos } func fazerTorrada() { fmt.Println("Começando a fazer torrada...") time.Sleep(2 * time.Second) fmt.Println("Torrada pronta!") // 5º: Aparece após 2 segundos } /* Saída: Iniciando café da manhã... Começando a fazer café... Começando a fazer torrada... Torrada pronta! (após 2 segundos) Café pronto! (após 3 segundos) Café da manhã pronto! (após 5 segundos) */ // 2. Contagem com Goroutines func contagem() { go contar("A", 5) // Começa a contar imediatamente go contar("B", 5) // Começa a contar imediatamente time.Sleep(6 * time.Second) } func contar(nome string, até int) { for i := 1; i
The above is the detailed content of Understanding Goroutines. For more information, please follow other related articles on the PHP Chinese website!

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor
