module ActiveSupport::Cache::MemCacheStore::LocalCacheWithRaw

def read_entry(key, options)

def read_entry(key, options)
  entry = super
  if options[:raw] && local_cache && entry
    entry = deserialize_entry(entry.value)
  end
  entry
end