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 July 30, 2024 17:58
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() {