對比下面兩個腳本的速度:
my.ini裡配置了
bind-address=127.0.0.1
用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;
分析:
1.my.ini裡配置
bind-address=127.0.0.1
時,Win7及其以上版本系統PHP用localhost連接MySQL耗時超過1秒,比用127.0.0.1連接慢了400倍.
2.my.ini裡配置
bind-address=::1
時,Win7及其以上版本系統PHP用localhost連接MySQL速度是正常的,但用127.0.0.1連接又不正常了.
3.去掉bind-address配置,則用localhost或127.0.0.1連接MySQL速度都是正常的.
所以:在配置了
bind-address=127.0.0.1
的情況下,應該使用 127.0.0.1 連接本地 MySQL 數據庫 。
安裝 WordPress、phpMyAdmin 等 PHP 程序的時候默認使用 localhost 連接本地 MySQL 數據庫,這時注意把默認的 localhost 改為 127.0.0.1。
另外,Windows 2008、2012 跟 Windows 7 存在同樣的問題。