Reputation: 2297
MySQL 6.0 is for production. Can I use it for database storage of a large project?
Upvotes: 0
Views: 565
Reputation: 9869
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/
Upvotes: 3
Reputation: 21184
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.
Upvotes: 0
Reputation: 37655
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.
Upvotes: 0