Server Save
# Redis Save Command | Rookie Tutorial
# [Rookie Tutorial -- Learning More Than Technology, It's A Dream!](#)
* (javascript:void(0);)
* (javascript:void(0);)
* (javascript:void(0);)
* (javascript:void(0))
Redis Tutorial
(#)(#)(#)(#)(#)
## Redis Commands
(#)(#)(#)(#)(#)(#)(#)(#)[Redis Pub/Sub](#)(#)(#)(#)(#)(#)(#)
## Redis Advanced Tutorial
[Redis Backup & Recovery](#)(#)(#)(#)(#)(#)(#)(#)
[](#)(#)
(#)[](#)
Explore Deeper
Search
Scripting Languages
Network Services
Web Design & Development
Scripts
Web Service
Programming
Computer Science
Programming Languages
Software
# Redis Save Command
!(#)(#)
The Redis Save command performs a synchronous save operation, saving a snapshot of all current Redis instance data to disk in RDB file format.
### Syntax
The basic syntax of the redis Save command is as follows:
redis 127.0.0.1:6379> SAVE
### Available Version
>= 1.0.0
### Return Value
Returns OK on successful save.
### Example
redis 127.0.0.1:6379> SAVE OK
!(#)(#)
YouTip