2012-11-28 25 views
0

我在设置布尔查询中的minimum_number_should_match时遇到了一些麻烦。我想知道我该如何设定。另外,什么是默认值?如何在轮胎内设置Elastic Search的minimum_number_should_match?

options = {:minimum_number_should_match => 1} 

result = tire.search(load: true, page: params[:page], per_page: 20) do 
    query do 
    boolean do 
     must {string squery, default_operator: "OR"} if squery.present? 
     must {term :aasm_state, aasm_state } 
     must {text :zipcode, zipcode} unless zipcode.nil? 
     should {text :city, city} if city 
     should {term :phone_store, true} 
     should {term :email_store, true} 
    end 
    end 

    sort {by :created_at, 'desc' } if squery.blank? 
end 

回答