让我们说我们的应用程序中有以下模型:
# AR model
class Foo < ActiveRecord::Base
belongs_to :bars # this is an association pointing to a Mongoid model
end
# Mongoid model
class Bar
include Mongoid::Document
belongs_to :foo # this is an association pointing to a AR model
end
是否可以在Mongoid模型中创建指向AR模型的关联,反之亦然?
答案 0 :(得分:2)
我们使用Tenacity(也称为“Polyglot Persistence”)。虽然存在一些局限性,但效果确实很好。所有者/维护者JWood非常敏感,并且修复了错误并合并了我发送的拉请求。