Home > php教程 > php手册 > body text

dns查询压测

WBOY
Release: 2016-06-06 19:38:52
Original
3166 people have browsed it

压测10万次dns查询需要的时间,用于测试dns本地cache,比如nscd,dnsmasq 压测结果: 开启nscd,通过Unixsocket获取解析,10万次请求5秒。 开启nscd,通过内存cache直接获取解析,10万次请求0.06秒 使用dnsmasq,通过udp获取解析,10万请求5秒 无缓存,10万次

压测10万次dns查询需要的时间,用于测试dns本地cache,比如nscd,dnsmasq

压测结果:
开启nscd,通过Unix socket获取解析,10万次请求5秒。
开启nscd,通过内存cache直接获取解析,10万次请求0.06秒
使用dnsmasq,通过udp获取解析,10万请求5秒
无缓存,10万次解析请求,遥遥无期。。。(抓包发现有明显的卡顿)
#!/usr/bin/php
<?php

$start = microtime(true);
for($i=0;$i<100000;$i++)
{
  gethostbyname('www.qq.com');
}
$end =  microtime(true);
echo ($end - $start) . PHP_EOL;
Copy after login
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!