php – 为什么我的MySQLi连接这么慢?

前端之家收集整理的这篇文章主要介绍了php – 为什么我的MySQLi连接这么慢?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的本地系统需要大约1秒建立一个 MySQLi连接.码:
$db = new MysqLi( 'localhost','root','pass','mydb' );@H_403_2@ 
 

为什么这么慢?这是正常吗?可以改善吗?

将“localhost”切换到127.0.0.1.

所以,而不是:

$db = new MysqLi( 'localhost','mydb');@H_403_2@ 
 

使用:

$db = new MysqLi( '127.0.0.1','mydb');@H_403_2@ 
 

看到这个问题似乎很受欢迎,很多人都想知道WHY this is happening

This is caused because the MysqL client will do an IPV6
lookup for the hostname. If this fails (and in this case,it obvIoUsly
does),it will then attempt to do an IPV4 lookup. Between the IPV6
(AAAA) lookup failing and the IPV4 (A) lookup succeeding,what we get
is a connection timeout cycle that lasts about 1-2 seconds.

值得注意的是,这个问题似乎只在Windows 7和之后发生.在Windows 7之前,本地主机解析由主机文件处理,该文件预先配置了127.0.0.1

原文链接:https://www.f2er.com/php/131070.html

猜你在找的PHP相关文章