You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To limit the rate of operations per unit time, use a time.Ticker.
This works well for rates up to 10s per second.
For higher rates, prefer a token bucket rate limiter (search godoc.org for
rate limit).