क्यास अमान्यतकरण — क्यास गरिएको डेटालाई सत्यको स्रोतसँग सुसंगत राख्नु — कम्प्युटिङमा सबैभन्दा गहिरो समस्याहरू मध्ये एक हो। चुनौती भनेको क्यासले बासी डेटा सेवा न्दिने र यसै साथ प्रदर्शन, सुसंगतता, र जटिलतालाई सन्तुलन गर्नु हो। धेरै रणनीति र खतराहरू बुझ्न लायक छन्।
मूल समस्या
When the source data changes, the cached copy becomes STALE.
→ Serve stale data? (fast but wrong) vs invalidate? (consistent but complex/slower)
→ "There are only two hard things in CS: cache invalidation and naming things."
The difficulty: knowing WHEN and WHAT to invalidate, across distributed systems,
without races, while keeping good cache hit rates.
