如何确保 MySQL 正在使用所有可用内存?

发布于 2024-11-25 23:41:45 字数 74 浏览 1 评论 0原文

愚蠢的问题:我有 4 GB RAM,我的数据集约为 500 MB。如何确保 MySQL/InnoDB 将我的数据集保存在 RAM 中?

Dumb question: I have 4 gb of RAM and my dataset is around 500 mb. How can I make sure MySQL/InnoDB is keeping my dataset in RAM?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

二手情话 2024-12-02 23:41:45

MySQL Tuning Primer 为您提供有关 MySQL 性能的大量信息和建议。请记住(它会警告您),实例应该运行一段时间才能为您提供准确的反馈。

MySQL Tuning Primer gives you lots info and recommendations regarding your MySQL performance. Keep in mind (and it will warn you), the instance should be running for a period of time to give you accurate feedback.

骄兵必败 2024-12-02 23:41:45

将 innodb_buffer_pool 设置为 3G - InnoDB 将在缓冲池中加载尽可能多的数据。

set the innodb_buffer_pool to 3G - InnoDB will load as much data it can in the buffer pool.

不念旧人 2024-12-02 23:41:45

Darhazer 是对的(我会投票给他,但没有代表点)。通常建议将 innodb_buffer_pool_size 设置为内存的 70-80%,尽管它实际上比这更复杂,因为您需要考虑系统其他部分实际使用的 RAM 量。

Darhazer is right (I'd vote him up but don't have the rep points). It's generally recommended to set innodb_buffer_pool_size to 70-80% of memory although it's really more complicated than that since you need to account for how much RAM other parts of your system is actually using.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文