方法
包含的模組
實例公共方法
_load(dumped) 連結
來源: 顯示 | 在 GitHub 上
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 126 def _load(dumped) ActiveSupport::MessagePack::CacheSerializer.load(dumped) end
dump(value) 連結
來源: 顯示 | 在 GitHub 上
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 122 def dump(value) ActiveSupport::MessagePack::CacheSerializer.dump(value) end
dumped?(dumped) 連結
來源: 顯示 | 在 GitHub 上
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 130 def dumped?(dumped) available? && ActiveSupport::MessagePack.signature?(dumped) end