我应该为我的大型项目使用 MySQL 6.0 吗?
MySQL 6.0 用于生产。 我可以用它来存储大型项目的数据库吗?
MySQL 6.0 is for production. Can I use it for database storage of a large project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
MySQL 5.1 是最新的稳定版本,我建议坚持使用。 6.0此时会相当不稳定。
编辑 截至 2011-05-26 MySQL 5.5.12 是最新的稳定版本。 请参阅此链接以获取最新的稳定版本: http://dev.mysql.com/downloads/
MySQL 5.1 is the latest stable version, I'd recommend sticking with that. 6.0 will be quite unstable at this point.
EDIT as of 2011-05-26 MySQL 5.5.12 is the latest stable version. See this link for the lastest stable version: http://dev.mysql.com/downloads/
目前 MySQL 6.0 是 alpha 版本,所以我建议您使用当前的稳定版本 -> MySQL 5.1
在这里您可以找到有关表大小限制取决于操作系统。 MySQL没有内部限制。
MySQL 6.0 in this moment is a alpha version, so I suggest you to use the current stable release -> MySQL 5.1
Here you can find some info about the table size limit depending on operating System. MySQL has not internal limit.
仅当您的站点需要关键增强功能时。 即便如此,我也会保留并使用变通办法,直到它至少进入测试版。
Only if there are critical enhancements that your site requires. And even then I'd hold back and use workarounds until it at least gets to beta.
我们尝试在 IIS7 机器上使用最新的 PHP 和 MySQL 5.1,但失败了。 我确信如果你下载 PHP 源代码并编译它,它将支持 5.1,但开箱即用它似乎支持 5.0。 因此,我们用 5.0 替换了 5.1,一切都完美运行。
短篇小说就是用行之有效的东西。 我会在开发中尝试它并在生产中避免它,直到一切正常。
We tried to use the latest PHP and MySQL 5.1 with failure on an IIS7 machine. I am sure if you download the source of PHP and compile it, it would have support for 5.1, but out of the box it seems to support 5.0. So, we replaced 5.1 with 5.0 and everything worked flawlessly.
Short story is use what works well. I would try it in development and avoid it in production until everything works well.