method
read_entry
v4.1.8 -
Show latest stable
- Class:
ActiveSupport::Cache::MemCacheStore::LocalCacheWithRaw
read_entry(key, options)protected
No documentation available.
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 178
def read_entry(key, options)
entry = super
if options[:raw] && local_cache && entry
entry = deserialize_entry(entry.value)
end
entry
end