method
read_serialized_entry
v7.0.0 -
Show latest stable
- Class:
ActiveSupport::Cache::RedisCacheStore
read_serialized_entry(key, raw: false, **options)private
No documentation available.
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 326
def read_serialized_entry(key, raw: false, **options)
failsafe :read_entry do
redis.with { |c| c.get(key) }
end
end