Flowdock
method

read_entry

Importance_0
v5.0.0.1 - 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 30
        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.