Skip to content

Instantly share code, notes, and snippets.

@exu
Created November 30, 2016 20:20
Show Gist options
  • Save exu/e8954feabb32888503e65e976f22d362 to your computer and use it in GitHub Desktop.
Save exu/e8954feabb32888503e65e976f22d362 to your computer and use it in GitHub Desktop.
rate := time.Second / 10 // 10 requests a second
limit := time.Tick(rate)
for req := range messages {
<-limit
go makeRequest(req)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment