Edit report at https://bugs.php.net/bug.php?id=40427&edit=1
ID: 40427 Comment by: georg dot hoellrigl at xidras dot com Reported by: andrew at neonsurge dot com Summary: fsockopen() always forces a DNS resolution unnecessarily Status: Bogus Type: Bug Package: Streams related Operating System: Gentoo, OS-X 10.4 PHP Version: 5.2.1 Block user comment: N Private report: N New Comment: Just for completness: The problem still existis in newer PHP Versions even if it may come from the used system calls. There is a simple solution to this: Disable IPv6 and try again... Previous Comments: ------------------------------------------------------------------------ [2007-02-10 19:51:05] tony2...@php.net >fsockopen() always asks your DNS server for the IP address >of a connection before it opens it, instead of trying to >look in the local cache first. Believe me, fsockopen() knows nothing about DNS servers and local caches. Not PHP problem. ------------------------------------------------------------------------ [2007-02-10 02:33:25] andrew at neonsurge dot com Description: ------------ fsockopen() always asks your DNS server for the IP address of a connection before it opens it, instead of trying to look in the local cache first. I believe this is unexpected and performance-wise is a very undesirable operation. See reproduce code... Reproduce code: --------------- <?php for ($i = 0; $i < 50; $i++) { $errno = $errstr = ""; //$ip = gethostbyname("php.net"); $a = fsockopen($ip,22,$errno,$errstr,10); //FAST way $a = fsockopen("php.net",22,$errno,$errstr,10); //SLOW way $ab = fread($a,4096); unset($a, $ab); } ?> Expected result: ---------------- While running the slower code above exactly as is, you can packet sniff and view 50 full requests for the domain php.net. This is unoptimized and causes this code to run extremely slow. When running with the fast way (change lines commented out) the above code runs a few hundred percent faster. Upon a packet sniff you can watch 1 or two requests for php.net being sent to your DNS server which I believe is the desired result. NOTE: In the code above I do have the workaround by connecting with the IP instead by using gethostbyname() first which appears to use the local DNS cache. Actual result: -------------- The code above should run exactly the same speed either way. fsockopen should be using the local machine's DNS cache and not have to query the DNS server upon every request when given a DNS name to connect to. ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=40427&edit=1