博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MYISAM,INNODB,FALCON的速度简单比较
阅读量:5863 次
发布时间:2019-06-19

本文共 1590 字,大约阅读时间需要 5 分钟。

hot3.png

插入50万条数据的时间简单比较。三个表song,song2,song3的字段一致。
mysql> desc song\G
*************************** 1. row ***************************
  Field: id
   Type: int(11)
   Null: NO
    Key: PRI
Default: NULL
  Extra: auto_increment
*************************** 2. row ***************************
  Field: name
   Type: text
   Null: NO
    Key:
Default:
  Extra:
*************************** 3. row ***************************
  Field: datetime
   Type: timestamp
   Null: NO
    Key:
Default: CURRENT_TIMESTAMP
  Extra:
*************************** 4. row ***************************
  Field: rank
   Type: int(11)
   Null: NO
    Key:
Default:
  Extra:
4 rows in set (0.00 sec)
mysql>
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 6.0.0-alpha-community-nt-debug MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
call sp_insert_mod(500000);
Query OK, 0 rows affected (
1 min 7.27 sec)
mysql>
call sp_insert_mod2(500000);
Query OK, 0 rows affected (
1 min 19.81 sec)
mysql>
call sp_insert_mod3(500000);
Query OK, 0 rows affected (
1 min 33.17 sec)
mysql>
select count(*) from song;
+----------+
| count(*) |
+----------+
|   500000 |
+----------+
1 row in set (
0.02 sec)
mysql>
select count(*) from song2;
+----------+
| count(*) |
+----------+
|   500000 |
+----------+
1 row in set (
0.92 sec)
mysql>
select count(*) from song3;
+----------+
| count(*) |
+----------+
|   500000 |
+----------+
1 row in set (
2.61 sec)
mysql>exit
Bye
当然你可以对MyISAM表使用MRG_MYISAM引擎来调高速度,
对INNODB表使用PARTITION 来提高速度。

本文出自 “” 博客,转载请与作者联系!

转载于:https://my.oschina.net/u/585111/blog/219474

你可能感兴趣的文章
Batch update returned unexpected row count from update [0];
查看>>
typescript 学习随记No.1
查看>>
理解Angular中的$apply()以及$digest()
查看>>
排列2
查看>>
移动端web app开发备忘
查看>>
调用接口中方法的两种方式
查看>>
关于Length() 和Sizeof() 的区别
查看>>
Java基础面试操作题:读取该文件内容,并按照自然顺序排序后输出到 另一个文件中...
查看>>
FlasCC例子研究之Animation
查看>>
lis =[2,3,'k',['qwe',20,['k1',['tt',3,'1']],89],'ab','adv'] 将列表lis中的'tt'变成大写(用两种方式)。...
查看>>
egret的tween动画循环播放
查看>>
curl及wget使用说明
查看>>
101个LINQ例子
查看>>
数据结构 d-堆
查看>>
linux 进程间通信机制(IPC机制)一总览
查看>>
学习进度条——第13周
查看>>
秒速五厘米的爱情
查看>>
怎么跑里面去了,
查看>>
为什么有时候 进入这么多次,一次是 38次,一次是 114次,
查看>>
2019第三次课程设计
查看>>