read_entry(key, options)
Read an entry from the cache.
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 145 def read_entry(key, options) rescue_error_with(nil) { deserialize_entry(@data.with { |c| c.get(key, options) }) } end