设置 SubclassFetchMode (Kodo OpenJPA) 实际上有什么作用?
将 SubClassFetchMode 设置为 EAGER_PARALLEL 实际上有什么作用?
为什么人们希望子类具有不同的 FetchMode?
KODO 和 OpenJPA 的实现规范非常糟糕,我无法弄清楚。
What does setting SubClassFetchMode e.g. to EAGER_PARALLEL actually do?
Why would one want a subclass to have a different FetchMode?
The implementation spec for KODO and OpenJPA is notoriously bad and I can't figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 http://download.oracle.com/docs /cd/E15523_01/apirefs.1111/e13946/ref_guide_professional_eager.html
“将子类获取模式设置为并行会影响每个类表和垂直继承层次结构。在并行模式下,Kodo 为每个子类发出单独的选择每个类一个表的继承层次结构,而不是像连接模式那样将所有子类表联合在一起。这适用于每个类一个表的基类上的任何操作:查询、按 ID 查找或关系遍历。
From http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e13946/ref_guide_professional_eager.html
"Setting your subclass fetch mode to parallel affects table-per-class and vertical inheritance hierarchies. Under parallel mode, Kodo issues separate selects for each subclass in a table-per-class inheritance hierarchy, rather than UNIONing all subclass tables together as in join mode. This applies to any operation on a table-per-class base class: query, by-id lookup, or relation traversal."