Latest web development tutorials

Redis Save command

Redis server

Redis Save command to save a synchronous operation, all data snapshot (snapshot) currently Redis instance stored as RDB file to your hard disk.

grammar

redis Save command basic syntax is as follows:

redis 127.0.0.1:6379> SAVE 

Available versions

> = 1.0.0

return value

Back OK when saved successfully.

Examples

redis 127.0.0.1:6379> SAVE 
OK

Redis server