vote up 0 vote down star

I have a framework that loads a lot of child collections from a non-database source. I recently got a use case where the resource is on network drives, and it is taking forever to get the collections loaded. I still need to support the eager loading scenario, but I now need to add lazy loading.

I had the solution to this bookmarked, but now I can't find that link. Google hasn't returned any usable links so far. The first reaction is to just add a Boolean parameter to the constructor. I know that this is a bad "code smell" and I remember the answer being something different.

Can anybody point me to a resource on how to solve this problem?

MORE INFO:

The collections are vertical, not horizontal. That's why loading in the background will not work in this specific case. That data is stored in a hierarchical structure similar to folders. I've seen some structures go up to 10 levels deep.

flag

2 Answers

vote up 1 vote down check

The solution turned out to be simpler than I thought. I just mixed the modes at different levels. By this I mean that I used eager loading at the topmost horizontal collections, and converted anything else below this to lazy loading.

It works really well. Now the UI, that uses this framework, is very responsive.

link|flag
vote up 0 vote down

Yes, a boolean in your constructor would definitely be a bad code smell. However, I would also say that changing your class to support lazy loading is a code smell as well because it violates some of the basic principles of encapsulation (i.e. should your class know or care whether resources are located on network drives or not?).

You should not change your class. Instead, change the code that uses your class so that it retrives data in a background thread instead.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.