Created
August 16, 2018 16:17
-
-
Save chrisgoffinet/9d2400f8cb6ace9bfa8271df3dad620e to your computer and use it in GitHub Desktop.
Rate Limit
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
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