程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> Windows Server 2008 R2和2012中PHP連接MySQL過慢的解決方法

Windows Server 2008 R2和2012中PHP連接MySQL過慢的解決方法

編輯:PHP綜合

對比下面兩個腳本的速度:

  • Windows 7 用 localhost 連接本地 MySQL,速度會很慢。
  • Windows 7 用 127.0.0.1 連接本地 MySQL,速度則是正常的。

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 存在同樣的問題。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved