[原创]MySQL中MyISAM引擎和Heap引擎执行速度性能测试

news/2024/7/3 12:00:53


MySQL中MyISAM引擎和Heap引擎执行速度性能测试

 

【测试环境】

CPU:    Intel Pentium4 2.66GHz
Memory: 1GB
Disk:   73GB/SCSI

OS:  FreeBSD 4.11
PHP: PHP 5.2.1
MySQL: MySQL 4.1.23b

 

【 前期工作 】

[ my.cnf ]

max_heap_table_size  =  128M


[ 建表 ]

use  test;

--
--
 Store engine heap
--
CREATE   TABLE  `tbl_heap` (    
  `id` 
int ( 11 NOT   NULL  auto_increment,   
  `name` 
varchar ( 32 NOT   NULL   default   ''
  `email` 
varchar ( 32 NOT   NULL   default   '' ,  
  `summary` 
varchar ( 255 default   ''
  
KEY  `id` (`id`)    
) ENGINE
= HEAP  DEFAULT  CHARSET = gbk; 

--
--
 Store engine myisam
--
CREATE   TABLE  `tbl_isam` (    
  `id` 
int ( 11 NOT   NULL  auto_increment,   
  `name` 
varchar ( 32 NOT   NULL   default   ''
  `email` 
varchar ( 32 NOT   NULL   default   '' ,  
  `summary` 
varchar ( 255 default   ''
  
KEY  `id` (`id`)    
) ENGINE
= MyISAM  DEFAULT  CHARSET = gbk;

 


【插入数据】

说明:每次都是空表插入数据

[插入10000 Record]
Heap engine insert 10000 record used time: 3.5008587837219
MyISAM engine insert 10000 record used time: 4.5881390571594

[50000 Record]
Heap engine insert 50000 record used time: 19.895354986191
MyISAM engine insert 50000 record used time: 33.866044998169

[100000 Record]
Heap engine insert 100000 record used time: 36.200875997543
MyISAM engine insert 100000 record used time: 68.34194111824

[200000 Record]
Heap engine insert 200000 record used time: 68.00207901001
MyISAM engine insert 200000 record used time: 125.26263713837


【查询数据】

表里分表有:200000条记录,两个表数据一致

[直接select,10000次,每次取100条记录]
Heap engine select 10000 times, 100 record used time: 12.122506141663
MyISAM engine select 10000 times, 100 record used time: 19.512896060944

[直接select,1000次,每次取10000条记录]
Heap engine select 1000 times, 10000 record used time: 111.54126811028
MyISAM engine select 1000 record used time: 116.79438710213

[增加where条件,1000次,每次取10000条记录]
Heap engine select 1000 times, 10000 record used time: 111.52102303505
MyISAM engine select 1000 times, 10000 record used time: 117.68481087685

[where条件,10000次,每次从1000条起,取1000条记录]
Heap engine select 10000 times, 1000 record used time: 124.28988695145
MyISAM engine select 10000 times, 1000 record used time: 139.82107305527

[where条件增加like,10000次,每次从1000条起,取1000条记录]
Heap engine select 10000 times, 1000 record used time: 145.43780493736
MyISAM engine select 10000 times, 1000 record used time: 163.56296992302

[where条件增加索引,10000次,每次从1000条起,取1000条记录]

-- 建立索引 (在SQLyob下执行)
ALTER TABLE tbl_heap ADD INDEX idx_name (name);
ALTER TABLE tbl_isam ADD INDEX idx_name (name);

Heap engine alter table add index used time: 2.078
MyISAM engine alter table add index used time: 13.516

Heap engine select 10000 times, 1000 record used time: 153.48922395706
MyISAM engine select 10000 times, 1000 record used time: 239.86818814278

PS: 不合适的索引还不如不要。。。-_-#

[SQLyog下进行count操作]
Heap engine select count used time: 4.53
MyISAM engine select count used time: 3.28

[SQLyob下进行select操作]
速度都很快,都在1秒一下,不论是1000条记录,还是200000条记录,个人猜测可能不准确

 


【更新操作】

[更新所有name=heiyeluren的记录为heiyeluren2,在SQLyog下执行]
Heap engine update used time: 2.500
MyISAM engine update used time: 16.000


【删除操作】

[删除所有name=heiyeluren2的记录,在SQLyog下执行]
Heap engine delete used time: 51.172
MyISAM engine delte used time: 5.578

 

【总结】

Heap在插入、查询、更新操作上明显要比MyISAM快,但是删除操作稍微比较慢,可能跟它在内存中的存储结构有关系,所以我们完全可以把Heap作为我们一个MyISAM表的一个备份,比如可以保存一些实时性要求比较高的数据,比如点击量、评论量、固定的用户信息等等,因为这些信息普遍就是插入和查询操作。

当然了,Heap也没有比MyISAM快太多,这样说明我的MyISAM速度还是非常快的,所以一般情况下,MyISAM能够满足大部分的应用了,如果数据太多的情况,可以考虑把部分常用的数据保存到Heap表中,同时也可以结合Memcache等缓存工具来帮助缓存数据。

另外,关于InnoDB和MyISAM的性能测试,可以参考我之前的测试数据:
http://blog.csdn.net/heiyeshuwu/archive/2007/04/10/1559640.aspx

 

 

【测试代码】

 

php
/**
 * function lib
 
*/
function conn(){
    
$host = "localhost";
    
$user = "root";
    
$pass = "";
    
$db   = "test";

    
$conn = mysql_connect($host, $user, $pass);
    
if (!$conn || !is_resource($conn)){
        
die("Connect to mysql failed: ". mysql_error());
    }
    
mysql_select_db($db);
    
return $conn;
}

function query($conn, $sql){
    
$res = mysql_query($sql, $conn);
    
if (!$res){
        
echo mysql_error()." ";
        
return false;
    }
    
return true;
}

function get_data($conn, $sql){
    
$res = mysql_query($sql, $conn);
    
if (!$res){
        
echo mysql_error()." ";
        
return false;
    }
    
$result = array();
    
while($row = mysql_fetch_array($res)){
        
$result[] = $row;
    }
    
return $result;
}

function get_time()
{
    
list($usec, $sec= explode(" ", microtime());
    
return ((float)$usec + (float)$sec);
}

/**
 * Insert test
 
*/
$conn = conn();
$count = 200000;

//Heap engine
$s1 = get_time();
for($i=0$i<$count$i++){
    query(
$conn, "insert into tbl_heap set name = 'heiyeluren', email='heiyeluren@abc.com', summary='This message is summary'");
}
$e1 = get_time();
echo "Heap engine insert $count record used time: ". ($e1-$s1." ";


//MyISAM engine
$s2 = get_time();
for($i=0$i<$count$i++){
    query(
$conn, "insert into tbl_isam set name = 'heiyeluren', email='heiyeluren@abc.com', summary='This message is summary'");
}
$e2 = get_time();
echo "MyISAM engine insert $count record used time: ". ($e2-$s2." ";


/**
 * Select test
 
*/

$count = 1000;
$records = 10000;

$s1 = get_time();
for($i=0$i<$count$i++){
    
$res = get_data($conn, "select * from tbl_heap limit $records");
    
unset($res);
}
$e1 = get_time();
echo "Heap engine select $count record used time: ". ($e1-$s1." ";


$s2 = get_time();
for($i=0$i<$count$i++){
    
$res = get_data($conn, "select * from tbl_isam limit $records");
    
unset($res);
}
$e2 = get_time();
echo "MyISAM engine select $count record used time: ". ($e2-$s2." ";

?>

 

 





http://www.niftyadmin.cn/n/3652643.html

相关文章

网络测试(除了动态路由)

文章目录测试图lsw1配置lsw2配置lsw3配置lsw4配置R1配置R2配置测试图 lsw1配置 [sw1]vlan bat 10 20 30 40 Info: This operation may take a few seconds. Please wait for a moment...done. [sw1]int e0/0/1 [sw1-Ethernet0/0/1]port link-type trunk [sw1-Ethernet0/0/1]p…

[转] 贴Snoopy.class.php代码学习参考

Snoopy.class.php 是一个关于HTTP协议访问操作的类库&#xff0c;主要是使用在 MagpieRSS 中用于远程文件的抓取&#xff0c;我原来转载的一篇文章大致有简单的介绍这个东西&#xff0c;今天无聊&#xff0c;把代码帖出来&#xff0c;大家参考学习。php/**********************…

传输层——TCP/IP协议,三次握手四次挥手

文章目录TCP和UDP协议TCP报文段三次握手四次挥手TCP端口UDP报文段UDP端口TCP和UDP协议 面向连接&#xff1a;指双方之间在通信之前要建立连接&#xff08;如打电话&#xff09; 无连接网络协议&#xff1a;指不需要先建立通信连接 TCP&#xff1a;传输控制协议 面向连接的&…

[原创]PHP4和PHP5性能测试和对比

PHP4和PHP5性能测试和对比作者&#xff1a;heiyeluren博客&#xff1a;http://blog.csdn.net/heiyeshuwu时间&#xff1a;2007年8月6日PHP 4到今年年底PHP Group将不再对其进行支持了&#xff0c;所以为了让大家更有信心的转移到PHP 5平台上&#xff0c;我特别做了这个测试&…

VRRP的作用与配置

文章目录VRRP的概述VRRP的作用VRRP术语抢占配置VRRP的概述 1.利用VRRP,一组路由器&#xff08;同一个LAN中的接口&#xff09;&#xff0c;协同工作&#xff0c;但是只有一个处于Master状态&#xff0c;处于该状态的路由器&#xff08;的接口&#xff09;承担实际的数据流量转…

[原创]Apache Rewrite对apache性能影响的测试

Apache Rewrite对apache性能影响的测试[ Apache rewrite规则 ]Apache中这个rewrite规则能把http://localhost/heiyeluren/readme.txt 重写到 D:/kiss/wwwroot/h/e/i/heiyeluren/readme.txt 修改httpd.conf&#xff0c;增加&#xff1a;RewriteEngine OnRewriteRule ^/([0-9a-z]…

每次装完 homebrew,ohmyzsh 就会报错:Insecure completion-dependent directories detected:

参考:https://zhuanlan.zhihu.com/p/313037188 这是因为在big sur安装homebrew后&#xff0c;会在/usr/local/share/生成一个zsh文件夹&#xff0c;里面包含了 因此&#xff0c;zsh文件默认设置的权限是775&#xff0c;也就是group user有writer的权利&#xff0c;zsh认为这是…

[转]InnoDB vs MyISAM vs Falcon benchmarks - part 1

InnoDB vs MyISAM vs Falcon benchmarks - part 1来源&#xff1a;http://www.mysqlperformanceblog.com/2007/01/08/innodb-vs-myisam-vs-falcon-benchmarks-part-1/Several days ago MySQL AB made new storage engine Falcon available for wide auditory. We cannot miss t…