Method: Redis#lastsave
- Defined in:
- lib/redis.rb
#lastsave ⇒ Fixnum
Get the UNIX time stamp of the last successful save to disk.
209 210 211 212 213 |
# File 'lib/redis.rb', line 209 def lastsave synchronize do |client| client.call([:lastsave]) end end |