Redis in-memory అయినప్పటికీ, డేటా disk కి persist చేయబడుతుంది కాబట్టి డేటా restarts లను survive చేస్తుంది. ఇది రెండు mechanisms ను అందిస్తుంది — 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"
