[ACCEPTED]-What is the opposite of lazy loading?-lazy-evaluation

Accepted answer
Score: 42

The oposite term for lazy loading is eager loading.

Eager 3 loading is essentially computing the tasks 2 when you ask for it.

Lazy Loading is when 1 you only do the computation when it is required.

Score: 5

I've seen the terms "Eager Loading" and 1 "Aggressive Initialization" both used.

Score: 1

I'd say that the opposite of lazy is proactive loading, i.e. loading 3 something in advance, before it's really 2 needed.

However it's hard to pick the opposites 1 when you have 3 entities {lazy, eager, proactive}

More Related questions