class ActiveSupport::Cache::MemCacheStore

def read_entry(key, options) # :nodoc:

:nodoc:
Read an entry from the cache.
def read_entry(key, options) # :nodoc:
  deserialize_entry(@data.get(escape_key(key), options))
rescue Dalli::DalliError => e
  logger.error("DalliError (#{e}): #{e.message}") if logger
  nil
end