Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Redis Server: SAVE

SAVE

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.

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