Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对在我的表格中使用分形树索引有疑问。我创建了指定 TokuDB 引擎的表
CREATE TABLE `My_table` ( ... ) ENGINE=TokuDB
文档说:“TokuDB 使用一种称为分形树的特殊数据结构,它针对不完全适合内存的数据进行了优化。”
但是如果我执行这个查询
SHOW INDEX FROM `My_table`
为我的表检索的所有索引都有 index_type = BTREE
所以…………这对吗?
这是正确的,即使它说 BTREE 只是一个标签。
您可以使用“show create table My_table;”仔细检查。如果它显示“engine=TokuDB”,那么它使用的是分形树索引。