On Wed, Oct 26, 2016 at 3:16 AM, Zheng Lin Edwin Yeo
<[email protected]> wrote:
> Hi,
>
> I'm using Solr 6.2.1.
>
> For the JSON Facet Syntax, are we able to sort on multiple values at one go?
>
> Like for example, if I want to sort by count, follow by the average price.
> is this the correct way tot do?
Sorting by multiple metrics isn't yet supported.
-Yonik
> json.facet={
> categories:{
> type : terms,
> field : cat,
> sort : { count : desc},
> sort : { x : desc},
> facet:{
> x : "avg(price)",
> y : "sum(price)"
> }
> }
> }
>
>
> Regards,
> Edwin