read_entry(key, options)
private

No documentation available.

# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 73
          def read_entry(key, options)
            entry = super
            if options[:raw] && local_cache && entry
              entry = deserialize_entry(entry.value)
            end
            entry
          end