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