Re: JSON Facet Syntax Sorting
Thanks for the update Yonik. Regards, Edwin On 26 October 2016 at 20:07, Yonik Seeley wrote: > On Wed, Oct 26, 2016 at 3:16 AM, Zheng Lin Edwin Yeo > 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 >
Re: JSON Facet Syntax Sorting
On Wed, Oct 26, 2016 at 3:16 AM, Zheng Lin Edwin Yeo 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
JSON Facet Syntax Sorting
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? json.facet={ categories:{ type : terms, field : cat, sort : { count : desc}, sort : { x : desc}, facet:{ x : "avg(price)", y : "sum(price)" } } } Regards, Edwin