read_entry(key, options)
private

No documentation available.

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