InnoDB 中 MyISAM 的 key_buffer_size 等价物是多少?
使用 MyISAM 时,配置设置 key_buffer_size 定义全局缓冲区的大小,MySQL 在其中缓存经常使用的索引数据块。
InnoDB对应的设置是什么?
When using MyISAM the configuration setting key_buffer_size
defines the size of the global buffer where MySQL caches frequently used blocks of index data.
What is the corresponding setting for InnoDB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
innodb_buffer_pool_size 是控制 InnoDB 用于缓存索引和数据的内存缓冲区大小的设置。 这是一个重要的性能选项。
有关完整说明,请参阅手册页。 MySQL 性能博客也有一篇关于如何选择合适的其尺寸。
innodb_buffer_pool_size
is the setting that controls the size of the memory buffer that InnoDB uses to cache indexes and data. It's an important performance option.See the manual page for the full explanation. The MySQL Performance Blog also has an article about how to choose a proper size for it.
据我所知,您可以为 InnoDB 调整的最佳设置是
innodb_buffer_pool_size
。As far as I know, the best setting you can adjust for InnoDB is
innodb_buffer_pool_size
.