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