read_entry(key, options = nil)
private
Store provider interface: Read an entry from
the cache.
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 349
def read_entry(key, options = nil)
failsafe :read_entry do
deserialize_entry redis.with { |c| c.get(key) }
end
end