Skip to content

Instantly share code, notes, and snippets.

@sleepy-cat
sleepy-cat / balance.go
Created January 2, 2024 15:03 — forked from chenlujjj/balance.go
example code from "Concurrency is not Parallelism" talk by Rob Pike
package main
import (
"container/heap"
"fmt"
"math/rand"
"time"
)
const nRequester = 100