配置/设置 Rails 应用程序以同时使用 Mongodb 和 Mysql
您好,有没有办法配置/设置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在项目中同时使用 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/