App Router har flera caching-lager som fungerar tillsammans. Att förstå dem förklarar varför data ibland verkar föråldrad och hur du kontrollerar färskhet.
De fyra cacherna
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)
1. Request Memoization
user = ();
