Skip to content

Instantly share code, notes, and snippets.

@chrisgoffinet
Created August 16, 2018 16:17
Show Gist options
  • Save chrisgoffinet/9d2400f8cb6ace9bfa8271df3dad620e to your computer and use it in GitHub Desktop.
Save chrisgoffinet/9d2400f8cb6ace9bfa8271df3dad620e to your computer and use it in GitHub Desktop.
Rate Limit
package main
import (
"context"
"fmt"
"time"
"golang.org/x/time/rate"
)
var limiter = rate.NewLimiter(rate.Every(1*time.Second), 1)
// PrintHello prints out the word hello
func PrintHello() {
limiter.Wait(context.Background())
fmt.Println("hello")
}
func main() {
for i := 0; i < 10; i++ {
PrintHello()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment