Redis SAVE 命令用於創建當前數據庫的備份。
redis Save 命令基本語法如下:
redis 127.0.0.1:6379> SAVE
redis 127.0.0.1:6379> SAVE OK
該命令將在 redis 安裝目錄中創建dump.rdb文件。
redis 127.0.0.1:6379> CONFIG GET dir 1) "dir" 2) "/usr/local/redis/bin"
以上命令 CONFIG GET dir 輸出的 redis 安裝目錄為 /usr/local/redis/bin。
創建 redis 備份文件也可以使用命令 BGSAVE,該命令在後台執行。
127.0.0.1:6379> BGSAVE Background saving started