The Redis SAVE command is used to create a backup of the current database.
Grammar
The basic syntax for the Redis Save command is as follows:
- Redis 127.0. 0.1:6379> SAVE
Instance
- Redis 127.0. 0.1:6379> SAVE
- Ok
This command will create the Dump.rdb file in the Redis installation directory.
Recovering data
If you need to recover data, simply move the backup file (DUMP.RDB) to the Redis installation directory and start the service. To obtain the Redis directory, you can use the CONFIG command as follows:
- Redis 127.0. 0.1:6379> CONFIG GET dir
- 1) "dir"
- 2) "/usr/local/redis/bin"
The above command CONFIG GET dir output Redis installation directory is/usr/local/redis/bin.
Bgsave
You can also create a Redis backup file using the command BGSAVE, which executes in the background.
Instance
- 127.0. 0.1:6379> BGSAVE
- Background Saving started
Redis Data Backup and recovery