Heim  >  Artikel  >  Backend-Entwicklung  >  php连接mysql效率的一个疑问

php连接mysql效率的一个疑问

WBOY
WBOYOriginal
2016-06-06 20:47:181033Durchsuche

今日做了一个测试:

同样的代码,在本机上测试运行很快,但是放到了服务器上,则需要大约5-6秒左右的时间

代码如下:

<code class="lang-php">$username="infouser";
$userpass="it123";
$dbhost= "localhost";

$db_connect=mysql_connect($dbhost,$username,$userpass) or die("Unable to connect to the MySQL!");
mysql_select_db('syinfo');
</code>

本机环境:windows xp , XAMPP
服务器环境:windows 2008, XAMPP

$dblost="localhost" 改成了 $dblost="127.0.0.1";
速度就提升了不少

这是为什么?

回复内容:

今日做了一个测试:

同样的代码,在本机上测试运行很快,但是放到了服务器上,则需要大约5-6秒左右的时间

代码如下:

<code class="lang-php">$username="infouser";
$userpass="it123";
$dbhost= "localhost";

$db_connect=mysql_connect($dbhost,$username,$userpass) or die("Unable to connect to the MySQL!");
mysql_select_db('syinfo');
</code>

本机环境:windows xp , XAMPP
服务器环境:windows 2008, XAMPP

$dblost="localhost" 改成了 $dblost="127.0.0.1";
速度就提升了不少

这是为什么?

当主机填写为localhost时mysql会采用 unix domain socket连接
当主机填写为127.0.0.1时mysql会采用tcp方式连接

localhost代表你本地的DNS
DNS代表的是域名系统
当你输入你的域名的时候,就会向DSN主机进行查询,然后返回响应的IP地址。
LOCALHOST返回的是127.0.0.1则代表的是你本地的IP

从网上看到的
:-P

hosts里加一句

127.0.0.1 localhost

完事。

服务器是IPv6?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn