开发者

Rails 3: how to use active record and mongoid at the same time

开发者 https://www.devze.com 2023-02-19 12:58 出处:网络
I read alot 开发者_Python百科that folks recommend using nosql together with sql datastores. For example have some reporting audit-trailing or log information in mysql and some threaded hierarchical da

I read alot 开发者_Python百科that folks recommend using nosql together with sql datastores. For example have some reporting audit-trailing or log information in mysql and some threaded hierarchical data in mongodb.

Is it possible to hook up rails with active record on mysql as well as mongoid?

Out of the box it seems not to work...Any hints? Or is this a not recommended approach?


Well, to do it, you're supposed to leave Rails intact, so don't exclude libraries like it's commonly suggested in Mongoid documentation. You need to configure them separately, so you need to have a database.yml and mongo.yml config files and you need to make sure they're both getting loaded.

After that, you can enable/disable AR and Mongoid on a per-model basis.

class User < ActiveRecord::Base
  #this is an AR model
end

class Item
  include Mongoid::Document
  #this is a Mongoid model
end
0

精彩评论

暂无评论...
验证码 换一张
取 消