2012-09-14 120 views
2

如何指定輪胎方面的順序?Elasticsearch /輪胎:方面訂單

其在Elasticsearch儘可能在這裏看到: http://www.elasticsearch.org/guide/reference/api/search/facets/terms-facet.html

在輪胎其默認爲「計數」但我無法弄清楚如何將其更改爲「術語」的順序。

這裏是我的搜索方法:

def self.search(params) 
tire.search do 
    query do 
    boolean do 
     must { string params[:query], default_operator: "AND" } if params[:query].present? 
    end 
    end 
    facet "article_ratings" do 
    terms :article_rating 
    end 
    # raise to_curl 
end 

回答

2

想通了......

facet "article_ratings" do 
    terms :article_rating, :order => 'term' 
    end