instance method
deserialize_entry
Ruby on Rails 6.1.7.10
Since v3.0.20 PrivateSignature
deserialize_entry(payload)
No documentation comment.
Parameters
-
payloadreq
Source
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 199
def deserialize_entry(payload)
entry = super
entry = Entry.new(entry, compress: false) unless entry.nil? || entry.is_a?(Entry)
entry
end
Defined in activesupport/lib/active_support/cache/mem_cache_store.rb line 199
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::MemCacheStore