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