method
deserialize_entry
v6.1.7.7 -
Show latest stable
- Class:
ActiveSupport::Cache::MemCacheStore
deserialize_entry(payload)private
No documentation available.
# 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