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
it would be really nice if this library supports doing multiple queries in parallel so that it will reduce the processing time.
at the moment I am doing it like below:
$resolver = new \Net_DNS2_Resolver([ 'nameservers' => $nameServers, 'ns_random' => true ]); $types = ['A', 'NS', 'TXT', 'MX']; foreach ($types as $type) { $response = $resolver->query($hostName, $type); // response processing }
The text was updated successfully, but these errors were encountered:
Did you try $response = $resolver->query($hostName, '*') ?
$response = $resolver->query($hostName, '*')
Sorry, something went wrong.
maybe https://github.com/spatie/async ?
No branches or pull requests
it would be really nice if this library supports doing multiple queries in parallel so that it will reduce the processing time.
at the moment I am doing it like below:
The text was updated successfully, but these errors were encountered: