instance method
_load
Ruby on Rails 8.1.2
Since v7.1.6Signature
_load(marked)
No documentation comment.
Parameters
-
markedreq
Source
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 88
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
Defined in activesupport/lib/active_support/cache/serializer_with_fallback.rb line 88
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::SerializerWithFallback::Marshal70WithFallback