FetchConfig |
FetchConfig.cache() |
Eagerly fetch the beans fetching the beans from the L2 bean cache
and using the DB for beans not in the cache.
|
FetchConfig |
FetchConfig.lazy() |
Specify that this path should be lazy loaded using the default batch load
size.
|
FetchConfig |
FetchConfig.lazy(int lazyBatchSize) |
Specify that this path should be lazy loaded with a specified batch size.
|
FetchConfig |
FetchConfig.query() |
Eagerly fetch the beans in this path as a separate query (rather than as
part of the main query).
|
FetchConfig |
FetchConfig.query(int queryBatchSize) |
Eagerly fetch the beans in this path as a separate query (rather than as
part of the main query).
|
FetchConfig |
FetchConfig.queryFirst(int queryBatchSize) |
Eagerly fetch the first batch of beans on this path.
|