method

deserialize_entry

deserialize_entry(payload, raw: false, **)
private

No documentation available.

# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 422
        def deserialize_entry(payload, raw: false, **)
          if raw && !payload.nil?
            Entry.new(payload)
          else
            super(payload)
          end
        end