# File lib/merb-cache/stores/strategy/gzip_store.rb, line 57 def decompress(data) return if data.nil? Marshal.load(Zlib::GzipReader.new(StringIO.new(data)).read) end