Created
October 2, 2018 16:02
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// example of counting semaphore to control fixed no. of goroutines | |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
// fixed no. of goroutines that are allowed to run at a time | |
sema := make(chan struct{}, 5) | |
for i := 0; i < 100; i++ { | |
sema <- struct{}{} | |
go func(i int) { | |
fmt.Println(i) | |
time.Sleep(1 * time.Second) | |
<-sema | |
}(i) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment