Latest web development tutorials

Redis Lastsave command

Redis server

Redis Lastsave Redis command returns the last successful time to save data to disk, the UNIX timestamp format.

grammar

redis Lastsave basic command syntax is as follows:

redis 127.0.0.1:6379> LASTSAVE 

Available versions

> = 1.0.0

return value

String text line collection.

Examples

redis 127.0.0.1:6379> LASTSAVE 
(integer) 1410853592

Redis server