程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php+mysql預查詢prepare 與普通查詢的性能對比,mysqlprepare

php+mysql預查詢prepare 與普通查詢的性能對比,mysqlprepare

編輯:關於PHP編程

php+mysql預查詢prepare 與普通查詢的性能對比,mysqlprepare


prepare可以解決大訪問量的網站給數據庫服務器所帶來的負載和開銷,本文章通過實例向大家介紹預查詢prepare與普通查詢的性能對比,需要的朋友可以參考一下。

實例代碼如下:

<?php  
class timer {     
        public $StartTime = 0;     
        public $StopTime = 0;     
        public $TimeSpent = 0;     
            
        function start(){     
            $this->StartTime = microtime();     
        }     
            
        function stop(){     
            $this->StopTime = microtime();     
        }     
            
        function spent() {     
            if ($this->TimeSpent) {     
            return $this->TimeSpent;     
  
            } else {   
                //  http://www.manongjc.com
                $StartMicro = substr($this->StartTime,0,10);     
                $StartSecond = substr($this->StartTime,11,10);     
                $StopMicro = substr($this->StopTime,0,10);     
                $StopSecond = substr($this->StopTime,11,10);     
                $start = floatval($StartMicro) + $StartSecond;     
                $stop = floatval($StopMicro) + $StopSecond;     
                $this->TimeSpent = $stop - $start;  
                  
            return round($this->TimeSpent,8).'秒';     
            }    
        }   
    
}  
  
$timer = new timer;     
$timer->start();    
  
$mysql = new mysqli('localhost','root','root','ganbaobao_ucenter');  
  
/* 
$query = $mysql->query("select username,email from uc_members where uid < 100000"); 
$result = array(); 
http://www.manongjc.com/article/1194.html
while($result = $query->fetch_array()) 
{ 
   $result[] = array('name'=>$result['username'],'email'=>$result['email']); 
} 
*/  
$query_prepare = $mysql->prepare("select username,email from uc_members where uid < ?");  
  
$id = 100000;  
$query_prepare->bind_param("i",$id);  
  
$query_prepare->execute();  
$query_prepare->bind_result($username,$email);  
  
$result = array();  
while($query_prepare->fetch())  
{  
    $result[] = array('name'=>$username,'email'=>$email);  
}  
  
$timer->stop();    
echo '</br>預查詢mysql運行100000條數據時間為: '.$timer->spent();    
unset($timer);    
//var_dump($result);  

普通mysql運行1000條數據時間為: 0.011621秒

普通mysql運行10000條數據時間為: 0.07766891秒

普通mysql運行100000條數據時間為: 0.10834217秒

 

預查詢mysql運行1000條數據時間為: 0.00963211秒

預查詢mysql運行10000條數據時間為: 0.04614592秒

預查詢mysql運行100000條數據時間為: 0.05989885秒

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