Flowdock
method

read_entry

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ActiveSupport::Cache::MemCacheStore::LocalCacheWithRaw
read_entry(key, options) protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 178
          def read_entry(key, options)
            entry = super
            if options[:raw] && local_cache && entry
               entry = deserialize_entry(entry.value)
            end
            entry
          end
Register or log in to add new notes.