Easy Tutorial
❮ Redis Install Server Config Get ❯

Redis Save Command

Redis Server

The Redis Save command performs a synchronous save operation, which saves all the data snapshots of the current Redis instance in the form of an RDB file to the hard drive.

Syntax

The basic syntax of the redis Save command is as follows:

redis 127.0.0.1:6379> SAVE

Available Versions

= 1.0.0

Return Value

Returns OK upon successful save.

Example

redis 127.0.0.1:6379> SAVE
OK

Redis Server

❮ Redis Install Server Config Get ❯