記錄mysql性能查詢過程的使用方法
一切源于一個實驗,請看下面的例子:
表:
CREATE TABLE IF NOT EXISTS `foo` (
`a` int(10) unsigned NOT NULL AUTO_INCREMENT,
`b` int(10) unsigned NOT NULL,
`c` varchar(100) NOT NULL,
PRIMARY KEY (`a`),
KEY `bar` (`b`,`a`)
) ENGINE=InnoDB;
CREATE TABLE IF NOT EXISTS `foo2` (
`a` int(10) unsigned NOT NULL AUTO_INCREMENT,
`b` int(10) unsigned NOT NULL,
`c` varchar(100) NOT NULL,
PRIMARY KEY (`a`),
KEY `bar` (`b`,`a`)
) ENGINE=MyISAM;
我往兩個表中插入了30w的數(shù)據(jù)(插入的時候性能差別InnoDB比MyISAM慢)
<?php
$host = '192.168.100.166';
$dbName = 'test';
$user = 'root';
$password = '';
$db = mysql_connect($host, $user, $password) or die('DB connect failed');
mysql_select_db($dbName, $db);
echo '===================InnoDB=======================' . "\r\n";
$start = microtime(true);
mysql_query("SELECT SQL_NO_CACHE SQL_CALC_FOUND_ROWS * FROM foo WHERE b = 1 LIMIT 1000, 10");
$end = microtime(true);
echo $end - $start . "\r\n";
echo '===================MyISAM=======================' . "\r\n";
$start = microtime(true);
mysql_query("SELECT SQL_NO_CACHE SQL_CALC_FOUND_ROWS * FROM foo2 WHERE b = 1 LIMIT 1000, 10");
$end = microtime(true);
echo $end - $start . "\r\n";
返回結(jié)果:
一次查詢就會差別這么多?。nnoDB和MyISAM,趕緊分析分析為什么。
首先是使用explain來進行查看
確定兩邊都沒有使用index,第二個查詢查的rows,并且MyISAM的查詢rows還比InnoDB少這么多,反而是查詢慢于InnoDB!!這Y的有點奇怪。
沒事,還有一個牛掰工具profile
具體使用可以參考:http://dev.mysql.com/doc/refman/5.0/en/show-profile.html
使用方法簡單來說:
Mysql > set profiling = 1;
Mysql>show profiles;
Mysql>show profile for query 1;

這個數(shù)據(jù)中就可以看到MyISAM的Sending data比InnoDB的Sending data費時太多了。查看mysql文檔
http://dev.mysql.com/doc/refman/5.0/en/general-thread-states.html
Sending data
The thread is reading and processing rows for a SELECT statement, and sending data to the client. Because operations occurring during this this state tend to perform large amounts of disk access (reads), it is often the longest-running state over the lifetime of a given query.
Sending data是去磁盤中讀取select的結(jié)果,然后將結(jié)果返回給客戶端。這個過程會有大量的IO操作。你可以使用show profile cpu for query XX;來進行查看,發(fā)現(xiàn)MyISAM的CPU_system比InnnoDB大很多。至此可以得出結(jié)論是MyISAM進行表查詢(區(qū)別僅僅使用索引就可以完成的查詢)比InnoDB慢。
相關(guān)文章
laravel-admin解決表單select聯(lián)動時,編輯默認沒選上的問題
今天小編就為大家分享一篇laravel-admin解決表單select聯(lián)動時,編輯默認沒選上的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-09-09基于curl數(shù)據(jù)采集之單頁面采集函數(shù)get_html的使用
在做數(shù)據(jù)采集時經(jīng)常要使用到curl+正則的方式采集需要的數(shù)據(jù) 根據(jù)自己的工作經(jīng)驗 把自己寫的一些常用自定義函數(shù) 與大家來分享 如果有寫得不恰當?shù)牡胤?請多多指教2013-04-04laravel框架實現(xiàn)去掉URL中index.php的方法
今天小編就為大家分享一篇laravel框架實現(xiàn)去掉URL中index.php的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10