Skip to content

Commit

Permalink
correct a typo, snapshop -> snapshot.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLai256 committed Feb 25, 2012
1 parent de6e822 commit c2d1d7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/redis.md
Expand Up @@ -653,7 +653,7 @@ Unfortunately, Redis replication doesn't yet provide automated failover. If the

### Backups

Backing up Redis is simply a matter of copying Redis' snapshot to whatever location you want (S3, FTP, ...). By default Redis saves its snapshop to a file named `dump.rdb`. At any point in time, you can simply `scp`, `ftp` or `cp` (or anything else) this file.
Backing up Redis is simply a matter of copying Redis' snapshot to whatever location you want (S3, FTP, ...). By default Redis saves its snapshot to a file named `dump.rdb`. At any point in time, you can simply `scp`, `ftp` or `cp` (or anything else) this file.

It isn't uncommon to disable both snapshotting and the append-only file (aof) on the master and let a slave take care of this. This helps reduce the load on the master and lets you set more aggressive saving parameters on the slave without hurting overall system responsiveness.

Expand Down

0 comments on commit c2d1d7e

Please sign in to comment.