我需要文本“_size”吗?在 mysql 5.1 的 my.cnf 文件中?

发布于 2024-08-29 00:33:15 字数 516 浏览 4 评论 0原文

这是一个关于在 mysql 5.1 的 my.cnf 文件中设置参数的非常简单的问题。

此页面为我提供了可以调整的参数: http://dev.mysql.com/doc/refman/ 5.0/en/server-parameters.html 所以我想我需要写

key_buffer_size = 256M

但是当我打开当前的 my.cnf 时,它有一行:

key_buffer = 16M

我的问题是,我是否需要“key_buffer_size”或“key_buffer”,或者我使用哪个并不重要?而且,我如何知道 my.cnf 中的某些内容是否不正确?守护进程启动日志文件在哪里?

我正在运行ubuntu;我认为版本 8.04 LTS

This is a pretty simple question about setting parameters in the my.cnf file for mysql 5.1.

This page gives me the parameters I can tune:
http://dev.mysql.com/doc/refman/5.0/en/server-parameters.html
and so I think I would need to write

key_buffer_size = 256M

But when I open my current my.cnf, it has the line:

key_buffer = 16M

My question is, do I need "key_buffer_size" or "key_buffer" or does it not matter which I use? And, how would I know if something in the my.cnf is incorrect? Where's the daemon start log file?

I am running ubuntu; I think version 8.04 LTS

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

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

发布评论

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

评论(2

紫轩蝶泪 2024-09-05 00:33:15

key_buffer 键已弃用。

应使用 key_buffer_size 来代替。

配置中存在的旧的已弃用密钥似乎是一个错误: default my.cnf 已弃用选项 key_buffer

$ mysqld --help

[警告] 使用唯一选项前缀 key_buffer 而不是 key_buffer_size 已被弃用,并将在未来版本中删除。请使用全名

key_buffer 键似乎已被弃用很长时间了。例如,key_buffer_size 早在 4.1 就一直在使用。

我能找到的 MySQL 文档中唯一提及此弃用的地方是 5.7 发行说明

The key_buffer key is deprecated.

The key_buffer_size should be used instead.

The old deprecated key existing in the configurations seems to be a bug: default my.cnf has deprecated option key_buffer.

$ mysqld --help

[Warning] Using unique option prefix key_buffer instead of key_buffer_size is deprecated and will be removed in a future release. Please use the full name instead

The key_buffer keys seems to have been deprecated for a long time. For example, key_buffer_size has been in use all the way back as far as 4.1.

The only mention of this deprecation in the MySQL documentation, that I could find, is a reference here in the 5.7 Release Notes.

自控 2024-09-05 00:33:15

MySQL 5.1 和 5.0 服务器参数规范均表示“KEY_BUFFER_SIZE”:

MySQL 5.0 | MySQL 5.1

Both MySQL 5.1 and 5.0 server parameter specification says "KEY_BUFFER_SIZE":

MySQL 5.0 | MySQL 5.1

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