I read a paper and it used terms cold cache and warm cache. I googled about this terms but I didn\'t find something useful (only a thread h
There is a similar concept in Frontend Web development, almost all the good js frontend framework does WarmCaching these days.
Cold Cache: Frontend app calls backend server for the first time.
Warm Cache: After the frontend fetches the data for the first time it saves it in its local cache. So the next time it tries to call the backend it fetches the item from its local cache.
reference: Caching Data in frontend