我如何加快这个丑陋的查询?

时间:2013-10-30 16:26:39

标签: ruby-on-rails ruby algorithm search

我正在尝试向其他用户展示其当前用户关注的公司/技能/学校。一旦创建了在其个人资料上具有此类属性的用户列表,我想根据与每个返回用户相关联的相关公司/技能/学校的数量对其进行排序,以在列表顶部显示最相关的用户。

虽然这种方法很有效,但它非常难看且可预测的很慢,而且我不知道从哪里开始清理它。一些指示将不胜感激。

def term_helper(terms,user)
  relevant_terms = []
  terms.each do |term|
    if user.positions.any? { |w| w.company.downcase.include?(term.downcase) rescue nil || w.industry.downcase.include?(term.downcase) rescue nil }
      relevant_terms << term
    end
    if user.educations.any? { |w| w.school.downcase.include?(term.downcase) rescue nil }
      relevant_terms << term
    end
    if user.held_skills.any? { |w| w.name.downcase.include?(term.downcase) rescue nil } 
      relevant_terms << term
    end
  end
  relevant_terms
end

def search
  if current_user
    followed_companies = current_user.followed_companies.pluck(:name)
    followed_skills = current_user.followed_skills.pluck(:name)
    @terms = (followed_companies + followed_skills).uniq
    full_list = []
    full_list_with_terms = {}
    users = []
    @terms.each do |term|
      full_list += User.text_search(term).uniq
      # using pg_search gem here
    end
    full_list.each_with_index do |user,index|
      terms = term_helper(@terms,user)
      full_list_with_terms[index] = {"user" => user, "term_count" => terms.count}
    end
    full_list_with_terms = full_list_with_terms.sort_by {|el| el[1]["term_count"]}
    full_list_with_terms.each do |el|
      users << el[1]["user"]
    end
    @matches = users.uniq.reverse.paginate(:page => params[:page], :per_page => 10)
  end
end

1 个答案:

答案 0 :(得分:0)

一些指示:

  1. User.text_search方法有什么作用?您使用的是全文搜索引擎吗?如果是这样,您应该构建一个搜索查询(term1 OR term2 OR term3等),而不是为每个术语单独搜索。

  2. User.text_search方法中,您是否正在创建数据库连接以预取教育,职位,hold_skills及其公司,学校和技能名称?这将大大减少数据库查询的数量。

  3. 考虑denormalizing您的数据库架构。也许您可以在company_name表格中添加positions列,在school_name表格中添加educations列,在skill_name表格中添加held_skills列。这将大大简化您的查询并提高性能。

  4. 这些将是一些起点。