如果我的所有表都使用 InnoDB,key_buffer_size 是否仍然适用?
如果我在文档中理解正确,key_buffer_size
仅用于 MyISAM 表。不过,文档没有明确指出它对其他数据库引擎没有用,因此产生了问题。
我的假设正确吗?
If I understand correctly in the documentation, key_buffer_size
is only used for MyISAM tables. The documentation doesn't explicitly say that its not useful for other DB engines, though, hence the question.
Am I right in my assumption?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的假设是正确的,它只是 MyISAM 参数。
话虽如此,请注意 MySQL 系统表是 MyISAM。因此,我让它保留其默认值(即我永远不会将其明确设置为零)。
Your assumption is correct, it is a MyISAM only parameter.
Having said that, note that the MySQL system tables are MyISAM. Consequently, I'd let it keep its default value (i.e. I'd never set it explicitly to zero).