PHP的dns_get_record在本机测试很慢怎么解决
一直想查找一个免费不限频率的域名查询接口,网上找了很久都没找到,最后干脆自己写一个域名查找接口,原理是直接用PHP查找该域名的whois信息,但直接查找whois太慢,就想先查找该域名的NS记录,如果有NS记录的话这个域名就已经注册了,这样理论上应该要快一些,这种思路对吗?
现在我用php的dns_get_record查询域名dns信息,但这速度真的不敢恭维哈,试了很多域名,基本上平均查询时间都在一分钟以上!有好几次都挂掉了,完全不像网上域名注册商那样快,手上没有美国的主机,想问一下,如果在美国主机上运行dns_get_record是不是会快一些?
回复内容:
一直想查找一个免费不限频率的域名查询接口,网上找了很久都没找到,最后干脆自己写一个域名查找接口,原理是直接用PHP查找该域名的whois信息,但直接查找whois太慢,就想先查找该域名的NS记录,如果有NS记录的话这个域名就已经注册了,这样理论上应该要快一些,这种思路对吗?
现在我用php的dns_get_record查询域名dns信息,但这速度真的不敢恭维哈,试了很多域名,基本上平均查询时间都在一分钟以上!有好几次都挂掉了,完全不像网上域名注册商那样快,手上没有美国的主机,想问一下,如果在美国主机上运行dns_get_record是不是会快一些?
刚刚测试了alexa top 500域名,最大耗时12.2S,最小不到0.001S.
同时事先我清空了本机的DNS缓存.
可以这么实现,因为每个域名至少等包含一条NS记录。
速度慢是你机器的原因,我在本机测试最多不超过3S.
获取一条后在一段时间内会存在缓存,我想你可以修改本机的DNS服务器看看能否有改善
<code>$start=microtime(true); $domain='segmentfault.com'; $rs=dns_get_record(strtolower($domain),DNS_NS); print_r($rs); $end=microtime(true); echo $end-$start;</code>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

In this chapter, we are going to learn the following topics related to routing ?

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
