method

read_entry

rails latest stable - Class: ActiveSupport::Cache::MemCacheStore::LocalCacheWithRaw

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.0.0) is shown here.

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