123456789_123456789_123456789_123456789_123456789_

Module: ActiveSupport::MessagePack::CacheSerializer

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Instance Chain:
self, Serializer
Defined in: activesupport/lib/active_support/message_pack/cache_serializer.rb

Constant Summary

Serializer - Included

SIGNATURE, SIGNATURE_INT

Instance Attribute Summary

Instance Method Summary

Instance Method Details

#install_unregistered_type_handler (private)

[ GitHub ]

  
# File 'activesupport/lib/active_support/message_pack/cache_serializer.rb', line 18

def install_unregistered_type_handler
  Extensions.install_unregistered_type_fallback(message_pack_factory)
end

#load(dumped)

[ GitHub ]

  
# File 'activesupport/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