Concept Flow - Data cache behavior
Request for Data
Check Cache
Return Cached
Store in Cache
Return Data
When Next.js requests data, it first checks the cache. If data is found (cache hit), it returns it immediately. If not (cache miss), it fetches from the server, stores it in cache, then returns it.