w3resource

Redis Server: SAVE

Redis SAVE Command

Redis SAVE command performs a synchronous save of the dataset producing a point in time snapshot of all the data inside the Redis instance, in the form of an RDB file.

Here are some common uses and scenarios for the "SAVE" command:

  • Immediate Snapshot: Creates a synchronous snapshot of the dataset and saves it to disk, capturing the current state of the database.
  • Data Backup: Useful for creating backups at specific points in time, ensuring data is preserved for recovery purposes.
  • Consistency Check: Provides a way to ensure data consistency by performing a manual save operation.
  • Maintenance: Facilitates data preservation during maintenance activities or before major changes to the system.

Syntax:

SAVE

Available since

1.0.0.

Return Value

String reply, The commands returns OK on success.

Return Value Type

String

Example: Redis SAVE

redis 127.0.0.1:6379> SAVE 
OK

Previous: ROLE
Next: SHUTDOWN



Follow us on Facebook and Twitter for latest update.