Skip to content

Instantly share code, notes, and snippets.

@harlow
Last active November 3, 2022 19:52
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save harlow/49318d54f45d29f1a77cc641faf14054 to your computer and use it in GitHub Desktop.
Save harlow/49318d54f45d29f1a77cc641faf14054 to your computer and use it in GitHub Desktop.
Worker pool to control concurrency and collect results
package main
import (
"fmt"
"sync"
"time"
)
const concurrency = 3
func main() {
// put tasks on channel
tasks := make(chan int, 100)
go func() {
for j := 1; j <= 9; j++ {
tasks <- j
}
close(tasks)
}()
// waitgroup, and close results channel when work done
results := make(chan int)
wg := &sync.WaitGroup{}
wg.Add(concurrency)
go func() {
wg.Wait()
close(results)
}()
for i := 1; i <= concurrency; i++ {
go func(id int) {
defer wg.Done()
for t := range tasks {
fmt.Println("worker", id, "processing job", t)
results <- t * 2
time.Sleep(time.Second)
}
}(i)
}
// loop over results until closed (see above)
for r := range results {
fmt.Println("result", r)
}
}
@chemax
Copy link

chemax commented Jul 27, 2021

123

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment