instance method
deserialize_entry
Ruby on Rails 8.1.2
Since v5.2.8.1 PrivateSignature
deserialize_entry(payload, raw: false, **)
No documentation comment.
Parameters
-
payloadreq -
rawkey = false -
kwargskeyrest
Source
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 434
def deserialize_entry(payload, raw: false, **)
if raw && !payload.nil?
Entry.new(payload)
else
super(payload)
end
end
Defined in activesupport/lib/active_support/cache/redis_cache_store.rb line 434
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::RedisCacheStore