1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-12 01:22:21 +02:00

added references to Limiter docs for 0-1 behaviour

This commit is contained in:
Luka Jajanidze 2021-11-21 19:28:49 +04:00 committed by Martti T
parent 8b4cce5021
commit bd29ef9e46

View File

@ -170,6 +170,9 @@ type (
/*
NewRateLimiterMemoryStore returns an instance of RateLimiterMemoryStore with
the provided rate (as req/s). The provided rate less than 1 will be treated as zero.
Also rate between 0 and 1 will be treated as zero.
for more info check out Limiter docs - https://pkg.go.dev/golang.org/x/time/rate#Limit.
Burst and ExpiresIn will be set to default values.
Example (with 20 requests/sec):