Memory表
功能特点
支持Hash索引(等值查找)和BTree索引(范围查找)
所有字段都为固定长度
不支持Blog和Text等大字段类型
Memory存储引擎使用表级锁
最大大小由max_heap_table_size参数决定
只有一个.frm存储表结构文件,表数据是在内存中的。
查看索引类型
show index from mymemory
show create table mymemory
show table status like 'mymemory'
功能特点
支持Hash索引(等值查找)和BTree索引(范围查找)
所有字段都为固定长度
不支持Blog和Text等大字段类型
Memory存储引擎使用表级锁
最大大小由max_heap_table_size参数决定
只有一个.frm存储表结构文件,表数据是在内存中的。
查看索引类型
show index from mymemory
show create table mymemory
show table status like 'mymemory'