《PHP实例:Windows Server 2008 R2和2012中PHP连接MySQL过慢的解决方法》要点:
本文介绍了PHP实例:Windows Server 2008 R2和2012中PHP连接MySQL过慢的解决方法,希望对您有用。如果有疑问,可以联系我们。
Windows 7 用 localhost 连接本地 MySQL,速度会很慢.
Windows 7 用 127.0.0.1 连接本地 MySQL,速度则是正常的.
PHP应用my.ini里配置了
PHP应用
bind-address=127.0.0.1
PHP应用 用localhost连接本地MySQL: 速度慢
PHP应用
$start = microtime(true);
$mysqli = new mysqli('127.0.0.1', 'root', '', 'mysql'); //连接耗时仅为0.0025秒.
//$mysqli = new mysqli('localhost', 'root', '', 'mysql'); //连接耗时超过1秒,比正常慢了400倍.
echo microtime(true) - $start;
PHP应用分析:1.my.ini里配置
PHP应用
bind-address=127.0.0.1
PHP应用时,Win7及其以上版本系统PHP用localhost连接MySQL耗时超过1秒,比用127.0.0.1连接慢了400倍.
2.my.ini里配置
PHP应用
bind-address=::1
PHP应用时,Win7及其以上版本系统PHP用localhost连接MySQL速度是正常的,但用127.0.0.1连接又不正常了.
3.去掉bind-address配置,则用localhost或127.0.0.1连接MySQL速度都是正常的.
PHP应用所以:在配置了
PHP应用
bind-address=127.0.0.1
PHP应用的情况下,应该使用 127.0.0.1 连接本地 MySQL 数据库 .
安装 WordPress、phpMyAdmin 等 PHP 程序的时候默认使用 localhost 连接本地 MySQL 数据库,这时注意把默认的 localhost 改为 127.0.0.1.
PHP应用另外,Windows 2008、2012 跟 Windows 7 存在同样的问题.