我的应用程序中具有以下模型:
class Order < Sequel::Model
many_to_one(:client, class: 'Client', key: :client_id)
end
class Client < Sequel::Model
one_to_many(:images, class: 'Image', key: :client_id, eager: :file)
end
class Image < Sequel::Model
many_to_one(:file, class: 'File', key: :file_id, eager: :namespace)
end
class File < Sequel::Model
many_to_one(:namespace, class: 'Namespace', key: :namespace_id)
end
class Namespace < Sequel::Model
end
我可以使用eager_graph(由于搜索列位于Orders
表中,因此可以使用Clients
来获取所有account_id=1
的所有client
的所有orders = Order.eager_graph(:client).where(account_id: 1)
:
.eager_graph(client: :images)
渴望加载所有这些实体的最佳策略是什么?
如果将其更改为.eager
,结果将是一个包含大量联接的大型查询。
是否可以对每个嵌套的关联进行单独的查询,就像仅使用kill-ring
方法一样?
由于性能问题,我试图对此进行微调。
预先感谢。
答案 0 :(得分:0)
Sequel当前不支持以这种方式混合eager和eager_graph。您可以这样做:
Order.eager(:client=>{proc{|ds| ds.where(:account_id=>1)}=>:images}).all.
select{|order| order.client}
但是,如果大多数订单没有该客户,那可能不是很有效。您最好这样做:
clients = Client.where(:account_id=>1).eager(:orders, :images)
clients.flat_map(&:orders)