OpsCanary
Back to daily brief
data infraredisPractitioner

Mastering Redis Persistence: RDB vs. AOF Explained

5 min read Official DocsApr 22, 2026
PractitionerHands-on experience recommended

Redis persistence exists to ensure your data survives server restarts and crashes. Without it, you risk losing everything stored in memory. The two primary methods for persistence are RDB (point-in-time snapshots) and AOF (append-only file), each with its own strengths and weaknesses. Understanding these options is essential for maintaining data integrity in production environments.

RDB persistence takes snapshots of your dataset at specified intervals. When Redis needs to dump the dataset to disk, it forks a child process that writes the dataset to a temporary RDB file. Once complete, the child replaces the old RDB file, leveraging copy-on-write semantics to minimize performance impact. You can configure RDB to save the dataset every N seconds if there are at least M changes. For example, using the command save 60 1000 will trigger a snapshot every 60 seconds if there are at least 1000 changes.

On the other hand, AOF logs every write operation received by the server, providing a more durable option. You can enable AOF by setting appendonly yes in your configuration file. You also have control over how often Redis synchronizes data to disk with the appendfsync parameter, which can be set to options like always or everysec. Since Redis 7.0.0, it employs a multi-part AOF mechanism, enhancing performance and reliability. However, RDB is not ideal if you need to minimize data loss in case Redis stops working, making AOF a better choice in those scenarios.

Key takeaways

  • Understand RDB for periodic snapshots and AOF for continuous logging.
  • Configure RDB with `save 60 1000` to take snapshots every 60 seconds if there are 1000 changes.
  • Enable AOF with `appendonly yes` for a fully-durable strategy.
  • Use `appendfsync always` for maximum durability at the cost of performance.
  • Be aware that RDB isn't suitable for minimizing data loss.

Why it matters

In production, data loss can lead to significant downtime and financial impact. Choosing the right persistence strategy ensures your application remains resilient and reliable.

Code examples

plaintext
save 60 1000
plaintext
appendonly yes
plaintext
appendfsync always

When NOT to use this

RDB is not good if you need to minimize the chance of data loss in case Redis stops working. The official docs don't call out specific anti-patterns here. Use your judgment based on your scale and requirements.

Want the complete reference?

Read official docs

Test what you just learned

Quiz questions written from this article

Take the quiz →

Get the daily digest

One email. 5 articles. Every morning.

No spam. Unsubscribe anytime.