mysql引擎速度_MySQL中MyISAM引擎和Heap引擎执行速度性能测试(1)_MySQL

【引自heiyeluren的博客】测试环境

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.5008587837219MyISAM engine insert 10000 record used time:

4.5881390571594

50000 Record

Heap engine insert 50000 record used time: 19.895354986191MyISAM engine insert 50000 record used time: 33.866044998169

100000 Record

Heap engine insert 100000 record used time: 36.200875997543MyISAM engine insert 100000 record used time: 68.34194111824

200000 Record

Heap engine insert 200000 record used time: 68.00207901001MyISAM engine insert 200000 record used time: 125.26263713837

查询数据

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

直接select,10000次,每次取100条记录

Heap engine select 10000 times, 100 record used time: 12.122506141663MyISAM engine select 10000 times, 100 record used time: 19.512896060944

直接select,1000次,每次取10000条记录

Heap engine select 1000 times, 10000 record used time: 111.54126811028MyISAM engine select 1000 record used time: 116.79438710213

增加where条件,1000次,每次取10000条记录

Heap engine select 1000 times, 10000 record used time: 111.52102303505MyISAM engine select 1000 times, 10000 record used time: 117.68481087685

本条技术文章来源于互联网,如果无意侵犯您的权益请点击此处反馈版权投诉

本文系统来源:php中文网

TAG标签:测试博客

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值