在 MySql 中创建索引时如何指定填充因子?
GateKiller
问问题
3023 次
2 回答
6
你没有。
http://dev.mysql.com/doc/refman/5.0/en/create-index.html
但是,它是 6.x 版的“已接受”功能请求: http ://bugs.mysql.com/bug.php?id=18178
所以,不要很快看到它就屏住呼吸。
于 2008-12-01T15:12:30.773 回答
1
假设您使用的是 InnoDB,似乎这仅在数据库级别受支持,而不是索引级别。
调用该设置innodb_fill_factor
并默认100
查看
https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_fill_factor了解更多详细信息。
于 2017-05-17T10:30:34.063 回答