method
read_serialized_entry
rails latest stable - Class:
ActiveSupport::Cache::MemCacheStore
read_serialized_entry(key, **options)private
No documentation available.
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 244
def read_serialized_entry(key, **options)
rescue_error_with(nil) do
@data.with { |c| c.get(key, options) }
end
end