method

serialize_entry

serialize_entry(entry, raw: false)
private

No documentation available.

# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 431
        def serialize_entry(entry, raw: false)
          if raw
            entry.value.to_s
          else
            Marshal.dump(entry)
          end
        end