limiter
limiter copied to clipboard
Dead simple rate limit middleware for Go.
Bumps [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) from 9.6.2 to 9.7.0. Release notes Sourced from github.com/redis/go-redis/v9's releases. 9.7.0 Changes 🚀 New Features Support Redis search and query capabilities (#2801, #3098) Support indexing and querying empty...
Replace `github.com/pkg/errors` with Go's native `errors` and `fmt` package. Closes #263
Currently the project uses [github.com/pkg/errors](https://github.com/pkg/errors) for error wrapping and stack traces. Since Go 1.13, the standard library provides built-in error wrapping and inspection via: errors.Is errors.As errors.Unwrap fmt.Errorf("... %w", err)...