Home > Backend Development > PHP Tutorial > php gethostbyname 效率问题

php gethostbyname 效率问题

WBOY
Release: 2016-06-06 20:52:18
Original
1697 people have browsed it

最近用到了gethostbyname,在本地的环境Mac+Apache下执行速度非常快,零点几秒上,但是放到服务器端就不行了,服务器端环境 LNMP ,执行时间都在5秒钟以上,怎么才能解决这个问题?
除了gethostbyname,还有什么能将域名解析成ip的其他方法么?

回复内容:

最近用到了gethostbyname,在本地的环境Mac+Apache下执行速度非常快,零点几秒上,但是放到服务器端就不行了,服务器端环境 LNMP ,执行时间都在5秒钟以上,怎么才能解决这个问题?
除了gethostbyname,还有什么能将域名解析成ip的其他方法么?

gethostbyname 需要DNS解析,通常需要1-5秒。
建议换成其他方法。

function gethostbyname2($host, $timeout = 3) {
   $query = `nslookup -timeout=$timeout -retry=1 $host`;
   if(preg_match('/\nAddress: (.*)\n/', $query, $matches))
      return trim($matches[1]);
   return $host;
}
Copy after login

试了一下你@April.L 的代码好像不对。修改了一下,还有不知道怎么搞的,gethostbyname的执行速度忽然上来了,在1s钟以下,我好像什么都没有改,就睡了一天。。不知道怎么弄的

function gethostbyname2($host, $timeout = 3) {
$query = 'nslookup -timeout='.$timeout.' -retry=1 '.$host;
$query = shell_exec($query);
if(preg_match('/\nAddress: (.*)\n/', $query, $matches))
return trim($matches[1]);
return $host;
}
Copy after login

PHP的gethostbyname并没有什么特殊的逻辑, 大部分情况下, 那就是直接调用gethostbyname(3), 而dns解析又和你的网络环境很相关, 所以这个确实不好一概而论 :)

简便方法是在本机或者局域网内的一台机器上安装 DNSMASQ,然后把DNS指过去,用作DNS查询加速,就会快很多了。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template