Module: ActiveSupport::Cache::SerializerWithFallback::PassthroughWithFallback
- Extended by:
 - PassthroughWithFallback
 
- Included in:
 - PassthroughWithFallback
 
- Defined in:
 - lib/active_support/cache/serializer_with_fallback.rb
 
Instance Method Summary collapse
- #_load(entry) ⇒ Object
 - #dump(entry) ⇒ Object
 - #dump_compressed(entry, threshold) ⇒ Object
 - #dumped?(dumped) ⇒ Boolean
 
Methods included from ActiveSupport::Cache::SerializerWithFallback
Instance Method Details
#_load(entry) ⇒ Object
      57 58 59  | 
    
      # File 'lib/active_support/cache/serializer_with_fallback.rb', line 57 def _load(entry) entry end  | 
  
#dump(entry) ⇒ Object
      49 50 51  | 
    
      # File 'lib/active_support/cache/serializer_with_fallback.rb', line 49 def dump(entry) entry end  | 
  
#dump_compressed(entry, threshold) ⇒ Object
      53 54 55  | 
    
      # File 'lib/active_support/cache/serializer_with_fallback.rb', line 53 def dump_compressed(entry, threshold) entry.compressed(threshold) end  |