mysql2 gem 是rails3 的强制要求吗
我有一个简单的问题是 mysql2 gem 是 Rails3 强制使用的,或者是否可以使用旧的 mysql gem,它们之间的主要区别是什么,任何人都可以详细说明这一点。
I have simple question is mysql2 gem is mandatory with rails3 or is it possible to use old mysql gem,What are the major difference between them,can anyone elaborate on this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这不是强制性的,我
在我的项目中使用:。
就差异而言,这里是 https://github.com/brianmario/mysql2 的片段
另外,如果您向下滚动到该页面,您可以看到基准测试,这些基准测试实际上表明 mysql2 在性能方面可能更好。
It is not mandatory, I use:
in my projects.
in terms of the difference, here is a snippet out of https://github.com/brianmario/mysql2
Also if you scroll down to the page, you can see benchmarks which show in fact that mysql2 may be better in terms of performance.
您不需要使用它。但推荐。可以在这里找到解释其好处的一个很好的答案:
Ruby、Rails:mysql2 gem,有人使用这个 gem 吗?它稳定吗?
我目前正在使用它生产 2 个应用程序,它非常稳定。
It is not required that you use it. But it is recommended. A good answer explaining its benefits can be found here:
Ruby, Rails: mysql2 gem, does somebody use this gem? Is it stable?
I'm currently using it production for 2 apps and it has been very stable.
要使用Mysql而不是MySql2,请在Gemfile & 中将mysql2更改为mysql。数据库.yml。有关详细信息,请参阅
http://rorguide。 blogspot.com/2011/03/browser-reloads-again-again-with-status.html
To use Mysql instead of MySql2, change mysql2 to mysql in Gemfile & database.yml. For details, refer to
http://rorguide.blogspot.com/2011/03/browser-reloads-again-again-with-status.html