码迷,mamicode.com
首页 > 数据库 > 详细

mysql memory

时间:2014-10-29 21:19:52      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   for   sp   div   on   

mysql memory engine

 

创建:

mysql> create table mt engine = memory select * from information_schema.tables;
Query OK, 334 rows affected (1.80 sec)
Records: 334  Duplicates: 0  Warnings: 0

 

限制表的大小

alter table mt max_row = 200 ;

或者

set global max_heap_table_size=1024*1024*1024

 

创建索引

alter table mt add index idx_hash_mt  [using hash(table_name) ];

alter table mt add index idx_btree_mt using btree(table_name);

 

mysql memory

标签:style   blog   io   color   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/mjorcen/p/4060416.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!