class Redis

def lastsave

Get the UNIX time stamp of the last successful save to disk.
def lastsave
  synchronize do
    @client.call(:lastsave)
  end
end