Is there a common term / catch-phrase for the opposite of lazy loading?
Asked
Active
Viewed 5,706 times
3 Answers
45
The oposite term for lazy loading is eager loading.
Eager loading is essentially computing the tasks when you ask for it.
Lazy Loading is when you only do the computation when it is required.

Mike Lewis
- 63,433
- 20
- 141
- 111
1
I'd say that the opposite of lazy is proactive loading, i.e. loading something in advance, before it's really needed.
However it's hard to pick the opposites when you have 3 entities {lazy, eager, proactive}

Sergei Voitovich
- 2,804
- 3
- 25
- 33
-
1Tiktok uses proactive loading for video's, the experience is much better when there is no loading time, you get the sense of zapping on a real tv. I made a react component that preloads youtube vids – Wim den Herder Apr 30 '22 at 22:59