module ActiveSupport::Cache::SerializerWithFallback::Marshal70WithFallback

def _load(marked)

def _load(marked)
  dumped = marked.byteslice(1..-1)
  dumped = Zlib::Inflate.inflate(dumped) if marked.start_with?(MARK_COMPRESSED)
  Cache::Entry.unpack(marshal_load(dumped))
end