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
Some servers will blacklist you if do to many queries. The main one I'm aware of is whois.dns.lu
whois.dns.lu
and I implemented rate limiting that way: https://github.com/Rafiot/uwhoisd/blob/testing/extra/uwhoisd.ini#L1868 https://github.com/Rafiot/uwhoisd/blob/testing/uwhoisd/__init__.py#L152
whois.dns.lu=1 100 means one query per seconds, 100 per hour
whois.dns.lu=1 100
It requires redis so I guess you don't want it in the core implemented that way, but I know I need it in production on my side.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some servers will blacklist you if do to many queries. The main one I'm aware of is
whois.dns.lu
and I implemented rate limiting that way:
https://github.com/Rafiot/uwhoisd/blob/testing/extra/uwhoisd.ini#L1868
https://github.com/Rafiot/uwhoisd/blob/testing/uwhoisd/__init__.py#L152
whois.dns.lu=1 100
means one query per seconds, 100 per hourIt requires redis so I guess you don't want it in the core implemented that way, but I know I need it in production on my side.
The text was updated successfully, but these errors were encountered: