Method: Redis#dump
- Defined in:
- lib/redis.rb
#dump(key) ⇒ String
Return a serialized version of the value stored at a key.
372 373 374 375 376 |
# File 'lib/redis.rb', line 372 def dump(key) synchronize do |client| client.call([:dump, key]) end end |