配置/设置 Rails 应用程序以同时使用 Mongodb 和 Mysql

发布于 2024-12-11 13:11:24 字数 227 浏览 0 评论 0原文

您好,有没有办法配置/设置 Rail3 应用程序以同时使用两个不同的数据存储(例如 MongoDB 和 Mysql)。

SQL/NoSql DB 有通用的 ORM 吗? 如果我必须使用 2 个不同的 ORM(例如 Active Record 和 MongoMapper),我该如何在 Rails 中进行设置或配置?

如果有人可以解释这一点或指出一些我可以阅读的链接,那真的会很有帮助。

谢谢

Hi Is there a way to configure/setup a rail3 app to use two different data stores like MongoDB and Mysql at the same time.

Is there any common ORM for SQL/NoSql DB ?
If I have to use 2 different ORM like Active Record and MongoMapper how do I set this up or configure this in rails ?

If some one can explain this or point to some links that I can read would really be helpful.

Thanks

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

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

发布评论

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

评论(1

寄离 2024-12-18 13:11:24

您可以在项目中同时使用 ActiveRecord 和 MongoMapper,但如果您想要记录之间的关联,则必须自己编写方法(对于基本情况来说这并不难)。

请参阅http://mongomapper.com/documentation/getting-started/rails.html 用于设置 MongoMapper 和 Rails。

您还可以查看 DataMapper,它支持多个后端。我不确定它是否可以在一个项目中执行多种不同类型的数据库。请参阅http://datamapper.org/

You can use both ActiveRecord and MongoMapper in a project, but if you want associations between records, you'll have to code the methods yourself (which is not that hard for the basic cases).

See http://mongomapper.com/documentation/getting-started/rails.html for setting up MongoMapper and Rails.

You might look also into DataMapper, which supports multiple backends. I'm not sure if it can do multiple different types of DB's in one project though. See http://datamapper.org/

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