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 dir1) "dir" 2) "/usr/local/redis/bin"
above command CONFIG GET dir the Redis installation directory for the output 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> Bgsavebackground Saving started
Redis Data backup and Restore command