171 172 173 174 175 176 177 178 179 180
# File 'lib/redis/connection/memory.rb', line 171 def dump(key) return nil if exists(key).zero? value = data[key] Marshal.dump( value: value, version: FakeRedis::VERSION, # Redis includes the version, so we might as well ) end