Uses of Class
io.ebean.FetchConfig
Packages that use FetchConfig
-
Uses of FetchConfig in io.ebean
Methods in io.ebean that return FetchConfigModifier and TypeMethodDescriptionstatic FetchConfig
FetchConfig.ofCache()
Return FetchConfig to eagerly fetch the relationship using L2 cache.static FetchConfig
FetchConfig.ofDefault()
Return FetchConfig to fetch the relationship using SQL join.static FetchConfig
FetchConfig.ofLazy()
Return FetchConfig to lazily load the relationship.static FetchConfig
FetchConfig.ofLazy
(int batchSize) Return FetchConfig to lazily load the relationship specifying the batch size.static FetchConfig
FetchConfig.ofQuery()
Return FetchConfig to eagerly fetch the relationship using a secondary query.static FetchConfig
FetchConfig.ofQuery
(int batchSize) Return FetchConfig to eagerly fetch the relationship using a secondary with a given batch size.Methods in io.ebean with parameters of type FetchConfigModifier and TypeMethodDescriptionQuery.fetch
(String path, FetchConfig fetchConfig) Additionally specify a JoinConfig to specify a "query join" and or define the lazy loading query.Query.fetch
(String path, String fetchProperties, FetchConfig fetchConfig) Additionally specify a FetchConfig to use a separate query or lazy loading to load this path.