php editor Youzi will introduce a method of writing chan in sync.WaitGroup goroutine. In concurrent programming, sync.WaitGroup is a very useful synchronization mechanism that can wait for the execution of a group of goroutines to complete. However, sometimes we need to write the results to a chan after the goroutine completes execution for consumption by other goroutines. This article will introduce in detail how to implement this function in sync.WaitGroup goroutine, let's take a look!
Question content
I am getting a list of items from an API endpoint. Then, for each project, I make another API request to get data about the individual project.
I can't make a second API request to each project at the same time because my API token is rate limited and if I make too many requests at the same time I get throttled.
However, the initial API response data can be split into multiple pages, which allows me to process pages of data simultaneously.
After some research, the following code does exactly what I want:
func main() { // pretend paginated results from initial API request page1 := []int{1, 2, 3} page2 := []int{4, 5, 6} page3 := []int{7, 8, 9} pages := [][]int{page1, page2, page3} results := make(chan string) var wg sync.WaitGroup for i := range pages { wg.Add(1) go func(i int) { defer wg.Done() for j := range pages[i] { // simulate making additional API request and building the report time.Sleep(500 * time.Millisecond) result := fmt.Sprintf("Finished creating report for %d", pages[i][j]) results <- result } }(i) } go func() { wg.Wait() close(results) }() for result := range results { fmt.Println(result) } }
I want to understand why it works:
go func() { wg.Wait() close(results) }()
My first attempt was unsuccessful - I thought I could iterate over the channel after wg.Wait()
and I would read the results as they are written to the results
channel Get the result.
func main() { // pretend paginated results from initial API request page1 := []int{1, 2, 3} page2 := []int{4, 5, 6} page3 := []int{7, 8, 9} pages := [][]int{page1, page2, page3} results := make(chan string) var wg sync.WaitGroup for i := range pages { wg.Add(1) go func(i int) { defer wg.Done() for j := range pages[i] { // simulate making additional API request and building the report time.Sleep(500 * time.Millisecond) result := fmt.Sprintf("Finished creating report for %d", pages[i][j]) results <- result } }(i) } // does not work wg.Wait() close(results) for result := range results { fmt.Println(result) } }
Workaround
On your first try:
- The main goroutine causes 3 goroutines to put values into the result channel.
- The main coroutine waits for all coroutines to complete.
- One of the goroutines puts a value into the result channel and fills the channel (channel size is 1 string).
- Now all three goroutines can no longer put values into the result channel and go to sleep until the result channel is released.
- All goroutines are in sleep state. You're at an impasse.
On the second try:
- The main goroutine contains 4 goroutines.
- 3 goroutines put values into the result channel.
- The other goroutine (I'll call it the 4th one) waits for these 3 goroutines to finish.
- At the same time, the main coroutine waits for the value in the result channel (for loop)
- In this case, if one of the goroutines puts a value in the result channel, it will block the remaining three goroutines; the main Goroutine will take the value out of the result channel, thereby unblocking the other Goroutines.
- So, all 3 goroutines put their respective values and end
- Then the fourth goroutine closes the channel
- The main Goroutine ends its for loop.
The above is the detailed content of Write chan in sync.WaitGroup goroutine. For more information, please follow other related articles on the PHP Chinese website!

对于初学者来说,要想在Linux环境下编程,必须深入理解一些重要概念才能更好地编写代码,实现业务功能。下面我们将介绍几个重要且常用的知识点。掌握这些概念可以避免在将来的编码中出现混淆。系统调用“❝所有操作系统的内核中都有一些内置函数,这些函数可以用来完成一些系统级别的功能。在Linux系统中,这些函数被称为“系统调用”(systemcall)。它们代表了从用户空间到内核空间的一种转换。❞”已收到消息.对于初学者来说,要想在Linux环境下编程,必须深入理解一些重要概念才能更好地编写代码,实现业务

进程间通信是指在Linux系统中,不同的进程之间进行数据的传递和共享,以实现进程之间的交流和协作。进程间通信的目的是提高系统的并发性和效率,以完成一些复杂的任务和功能。进程间通信的方法有很多种,如管道、消息队列、信号、共享内存、信号量、套接字等,它们各有各的特点和优缺点,适用于不同的场景和需求。但是,你真的了解Linux进程间通信的方法吗?你知道如何在Linux下使用和选择合适的进程间通信方法吗?你知道如何在Linux下优化和提高进程间通信的效果吗?本文将为你详细介绍Linux进程间通信的相关知

前言同步是进程之间,以及进程与系统资源之间的交互。由于Linux内核采用多任务,因此在多个进程之间必须有同步机制来保证协调。Linux内核中有许多种同步机制。今天我们将重点介绍kernel中的异步和同步机制,其中着重介绍kernel中的异步机制。kernel中的异步机制分为两种:一种是应用层的同步机制,即应用层线程之间的通信;另一种是内核的同步机制。当一个线程进入内核态后,它可以直接与内核沟通。kernel中有两个线程是这样的:一个是线程A,它进入内核态后会直接与内核沟通,告诉它要做什么,完成后

Golang中同步机制对于游戏开发性能的提升,需要具体代码示例引言:游戏开发是一个对性能高要求的领域,在处理实时交互的同时,还要保持游戏的流畅性和稳定性。而Go语言(Golang)则提供了一种高效的编程语言和并发模型,使得其在游戏开发中有着广泛应用的潜力。本文将重点探讨Golang中同步机制对于游戏开发性能的提升,并通过具体代码示例来加深理解。一、Golan

Linux内核是一个复杂的系统,它需要处理多种多样的并发问题,如进程调度、内存管理、设备驱动、网络协议等。为了保证数据的一致性和正确性,Linux内核提供了多种同步机制,如自旋锁、信号量、读写锁等。但是,这些同步机制都有一些缺点,比如:自旋锁会导致CPU浪费时间在忙等待上,而且不能在抢占式内核中使用;信号量会导致进程睡眠和唤醒,增加了上下文切换的开销;读写锁会导致写者饥饿或者读者饥饿,而且在读者多写者少的情况下,写者还要获取锁的开销。那么,有没有一种更好的同步机制呢?答案是有的,那就是RCU(R

Linux系统是一种支持多任务并发执行的操作系统,它可以同时运行多个进程,从而提高系统的利用率和效率。但是,如果一个进程中有多个线程,而这些线程需要共享一些数据或资源,就可能出现数据不一致或资源竞争的问题,导致系统的错误或异常。为了解决这个问题,就需要使用一些同步机制,例如信号量、条件变量、互斥量等。其中,互斥量是一种比较简单而有效的同步机制,它可以让一个线程在访问共享数据或资源时,锁定它们,防止其他线程同时访问,从而保证线程安全。本文将介绍Linux系统中多线程互斥量的互斥的方法,包括互斥量的

Java多线程原理剖析:线程同步与死锁问题分析摘要:本文将深入探讨Java多线程编程中的线程同步和死锁问题。通过详细解释线程的原理和Java提供的同步机制,我们将讨论如何正确地使用同步机制来避免线程冲突和数据不一致的问题。同时,我们还将分析死锁问题以及如何避免和解决这些问题。1.引言随着计算机硬件的发展,多核处理器已经成为现代计算机系统的标配。而多线程编程

下面将讲解进程间通信的另一种方式,使用共享内存。一、什么是共享内存顾名思义,共享内存就是允许两个不相关的进程访问同一个逻辑内存。共享内存是在两个正在运行的进程之间共享和传递数据的一种非常有效的方式。不同进程之间共享的内存通常安排为同一段物理内存。进程可以将同一段共享内存连接到它们自己的地址空间中,所有进程都可以访问共享内存中的地址,就好像它们是由用C语言函数malloc分配的内存一样。而如果某个进程向共享内存写入数据,所做的改动将立即影响到可以访问同一段共享内存的任何其他进程。特别提醒:共享内存


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

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

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
