method

serialize_entry

serialize_entry(entry, raw: false)
private

No documentation available.

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