Method: Redis#lastsave

Defined in:
lib/redis.rb

#lastsaveFixnum

Get the UNIX time stamp of the last successful save to disk.

Returns:

  • (Fixnum)


209
210
211
212
213
# File 'lib/redis.rb', line 209

def lastsave
  synchronize do |client|
    client.call([:lastsave])
  end
end