Skip to Content Skip to Search
Methods
#
D
Included Modules

Constants

MARSHAL_SIGNATURE = "\x04\x08".b.freeze
 

Instance Public methods

_load(dumped)

# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 131
def _load(dumped)
  marshal_load(dumped)
end

dump(value)

# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 127
def dump(value)
  Marshal.dump(value)
end

dumped?(dumped)

# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 135
def dumped?(dumped)
  dumped.start_with?(MARSHAL_SIGNATURE)
end