મૂળભૂત cache-aside ની બહાર, ઘણી કેશિંગ સ્ટ્રેટેજીઝ છે — cache-aside, write-through, write-behind, read-through — દરેકમાં વિવિધ consistency અને performance trade-offs છે. તેમને સમજવું (અને eviction policies) તમને અસરકારક કેશિંગ ડિઝાઇન કરવામાં મદદ કરે છે.
Cache-aside (lazy loading — સૌથી સામાન્ય)
App checks cache → miss → load from DB → populate cache → return.
✓ Only requested data is cached (efficient); resilient (works if cache is down)
✗ First request is a miss (slower); cache can be stale until TTL/invalidation
→ The default, most common strategy.
Write-through અને write-behind
WRITE-THROUGH → write to cache AND DB together (synchronously) on every write
✓ Cache always fresh/consistent ✗ Writes are slower (two writes); caches unread data
WRITE-BEHIND (write-back) → write to cache immediately, write to DB ASYNC later
✓ Fast writes ✗ Risk of data loss if cache fails before the DB write; more complex
