App Router-ல் பல கேசிங் அடுக்குகள் உள்ளன, அவை ஒன்றாக வேலை செய்கின்றன. இவற்றைப் புரிந்துகொள்வது, ডেটா ஏன் சில சமயம் பழையதாகத் தோன்றுகிறது என்பதையும், நீங்கள் எப்படி ताज़ாپனை கட்டுப்படுத்தலாம் என்பதையும் விளக்குகிறது.
நான்கு கேசுகள்
1. Request Memoization — dedupes identical fetch() calls within ONE render pass
2. Data Cache — persists fetch() results across requests & deploys (server)
3. Full Route Cache — caches the rendered HTML/RSC of static routes (build time)
4. Router Cache — client-side cache of visited routes (in the browser, per session)
