对比下面两个脚本的速度:
my.ini里配置了
用localhost连接本地MysqL: 速度慢
PHP;">
PHP
$start = microtime(true);
$MysqLi = new MysqLi('127.0.0.1','root','','MysqL'); //连接耗时仅为0.0025秒.
//$MysqLi = new MysqLi('localhost','MysqL'); //连接耗时超过1秒,比正常慢了400倍.
echo microtime(true) - $start;
分析:
1.my.ini里配置时,Win7及其以上版本系统PHP用localhost连接MysqL耗时超过1秒,比用127.0.0.1连接慢了400倍. 2.my.ini里配置
时,Win7及其以上版本系统PHP用localhost连接MysqL速度是正常的,但用127.0.0.1连接又不正常了. 3.去掉bind-address配置,则用localhost或127.0.0.1连接MysqL速度都是正常的.
所以:在配置了
的情况下,应该使用 127.0.0.1 连接本地 MysqL 数据库 。 安装 wordpress、PHPMyAdmin 等 PHP 程序的时候默认使用 localhost 连接本地 MysqL 数据库,这时注意把默认的 localhost 改为 127.0.0.1。
另外,Windows 2008、2012 跟 Windows 7 存在同样的问题。