method

serialize_entry

serialize_entry(entry, **options)
private

No documentation available.

# File activesupport/lib/active_support/cache.rb, line 853
        def serialize_entry(entry, **options)
          options = merged_options(options)
          if @coder_supports_compression && options[:compress]
            @coder.dump_compressed(entry, options[:compress_threshold])
          else
            @coder.dump(entry)
          end
        end