method
deserialize_entry
v7.1.3.4 -
Show latest stable
- Class:
ActiveSupport::Cache::RedisCacheStore
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