यद्यपि Redis in-memory हो, यसले डेटालाई डिस्कमा persist गर्न सक्छ ताकि डेटा restarts पछि पनि जीवित रहे। यसले दुई मेकानिजम अफरदारी गर्छ — RDB (point-in-time snapshots) र AOF (append-only log of operations) — विभिन्न durability/performance trade-offs सहित।
RDB — point-in-time snapshots
RDB takes SNAPSHOTS of the dataset at intervals, saving a compact binary file.
✓ Compact single-file backups; fast restarts (load the snapshot)
✓ Good for backups and disaster recovery; less impact on performance
✗ You can LOSE data since the last snapshot (e.g. last few minutes) if Redis crashes
→ Configure save points: e.g. "save after 900s if ≥1 change, 300s if ≥10 changes"
