方法
包含的模組
常數
MARSHAL_SIGNATURE | = | "\x04\x08".b.freeze |
執行個體公開方法
_load(dumped) 連結
來源:顯示 | 在 GitHub 上
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 131 def _load(dumped) marshal_load(dumped) end
dump(value) 連結
來源:顯示 | 在 GitHub 上
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 127 def dump(value) Marshal.dump(value) end
dumped?(dumped) 連結
來源:顯示 | 在 GitHub 上
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 135 def dumped?(dumped) dumped.start_with?(MARSHAL_SIGNATURE) end