method

serialize_entry

rails latest stable - Class: ActiveSupport::Cache::MemCacheStore
serialize_entry(entry, raw: false, **options)
private

No documentation available.

# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 300
        def serialize_entry(entry, raw: false, **options)
          if raw
            entry.value.to_s
          else
            super(entry, raw: raw, **options)
          end
        end