We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/go-chi/httprate/blob/master/httprate.go#L101
The text was updated successfully, but these errors were encountered:
Thanks for the note — do you mind elaborating what is the potential key conflict?
Sorry, something went wrong.
Say there are 2 key functions k1, k2
For req_1, k1(req_1) = aa and k2(req_1) = b, so final key = aab For req_2, k1(req_2) = a and k2(req_2) = ab, so final key = aab
If some kind of delimiter is used to concat the components, this two requests will not generate the same final key.
Ah yes indeed. Thx, I’ll separate with “:”
solved 0ea2148 / https://github.com/go-chi/httprate/tree/v0.7.1
No branches or pull requests
https://github.com/go-chi/httprate/blob/master/httprate.go#L101
The text was updated successfully, but these errors were encountered: