Skip to content

Instantly share code, notes, and snippets.

View mysterytree's full-sized avatar

Hu Sheng mysterytree

  • Grab Taxi
  • 北京
View GitHub Profile
@AntoineAugusti
AntoineAugusti / limitConcurrentGoroutines.go
Last active April 8, 2024 08:33
Limit the maximum number of goroutines running at the same time
package main
import (
"flag"
"fmt"
"time"
)
// Fake a long and difficult work.
func DoWork() {