首页 > 代码库 > mysql memory
mysql memory
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。