method

_load

_load(marked)
public

No documentation available.

# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 110
          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