class ActiveSupport::Cache::MemCacheStore

def rescue_error_with(fallback)

def rescue_error_with(fallback)
  yield
rescue Dalli::DalliError => e
  logger.error("DalliError (#{e}): #{e.message}") if logger
  fallback
end