在MySql中创建索引时如何指定填充因子?
How do you specify the Fill Factor when creating an index in MySql?
你不知道。
http://dev.mysql.com/doc/refman/5.0 /en/create-index.html
但是,这是版本 6.x 的“已接受”功能请求: http://bugs.mysql.com/bug.php?id=18178
所以,短期内看到它时不要屏住呼吸。
You don't.
http://dev.mysql.com/doc/refman/5.0/en/create-index.html
However, it is an 'accepted' feature request for version 6.x: http://bugs.mysql.com/bug.php?id=18178
So, don't hold your breath on seeing it any time soon.
假设您使用的是 InnoDB,似乎仅在数据库级别支持,而不是索引级别支持。
该设置名为 innodb_fill_factor,默认为 100 请参阅 https://dev.mysql.com/doc/ refman/5.7/en/innodb-parameters.html#sysvar_innodb_fill_factor 了解更多详细信息。
innodb_fill_factor
100
Assuming that you are using InnoDB, it seems like this is only supported at database level, not index level.
The setting is called innodb_fill_factor and defaults to 100 see https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_fill_factor for more details.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
你不知道。
http://dev.mysql.com/doc/refman/5.0 /en/create-index.html
但是,这是版本 6.x 的“已接受”功能请求:
http://bugs.mysql.com/bug.php?id=18178
所以,短期内看到它时不要屏住呼吸。
You don't.
http://dev.mysql.com/doc/refman/5.0/en/create-index.html
However, it is an 'accepted' feature request for version 6.x:
http://bugs.mysql.com/bug.php?id=18178
So, don't hold your breath on seeing it any time soon.
假设您使用的是 InnoDB,似乎仅在数据库级别支持,而不是索引级别支持。
该设置名为
innodb_fill_factor
,默认为100
请参阅https://dev.mysql.com/doc/ refman/5.7/en/innodb-parameters.html#sysvar_innodb_fill_factor 了解更多详细信息。
Assuming that you are using InnoDB, it seems like this is only supported at database level, not index level.
The setting is called
innodb_fill_factor
and defaults to100
seehttps://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_fill_factor for more details.