Collections are currently lazily loaded as a whole (i.e. the List, Set, etc. is proxied), meaning the entire collection is loaded on request. It would be nice to implement paged collections which load and unload collection entities lazily on the fly.
This will require implementing various Java collections like List and Set.
Collections are currently lazily loaded as a whole (i.e. the
List,Set, etc. is proxied), meaning the entire collection is loaded on request. It would be nice to implement paged collections which load and unload collection entities lazily on the fly.This will require implementing various Java collections like
ListandSet.