module ActiveSupport::MessagePack::CacheSerializer

Public Instance Methods

load(dumped) click to toggle source
Calls superclass method
# File lib/active_support/message_pack/cache_serializer.rb, line 11
def load(dumped)
  super
rescue ActiveSupport::MessagePack::MissingClassError
  # Treat missing class as cache miss => return nil
end

Private Instance Methods

install_unregistered_type_handler() click to toggle source
# File lib/active_support/message_pack/cache_serializer.rb, line 18
def install_unregistered_type_handler
  Extensions.install_unregistered_type_fallback(message_pack_factory)
end