Re: Sorting facets by relevance

2013-05-15 Thread Mikhail Khludnev
> > Any help is appreciated. > Thank you very much in advance. > > Best regards > Jan > > [1]: http://wiki.apache.org/solr/SimpleFacetParameters#facet.sort > [2]: http://wiki.apache.org/solr/FieldCollapsing > > > > -- > View this message in context: > http:/

Sorting facets by relevance

2013-05-15 Thread Jan Morlock
. Best regards Jan [1]: http://wiki.apache.org/solr/SimpleFacetParameters#facet.sort [2]: http://wiki.apache.org/solr/FieldCollapsing -- View this message in context: http://lucene.472066.n3.nabble.com/Sorting-facets-by-relevance-tp4063649.html Sent from the Solr - User mailing list archive at

Re: Sorting Facets by First Occurrence

2009-11-30 Thread Cory G Watson
On Nov 30, 2009, at 5:15 PM, Chris Hostetter wrote: > All of Solr's existing faceting code is based on the DocSet which is an > unordered set of all matching documents -- i suspect your existing > application only reordered the facets based on their appearance in the > first N docs (possibly ju

Re: Sorting Facets by First Occurrence

2009-11-30 Thread Chris Hostetter
: I'm working on replacing a custom, internal search implementation with : Solr. I'm having great success, with one small exception. ... : For example, if a search yielded 10 results, 1 - 10, and hit 1 is in : category 'Toys', hit 2 through 9 are in 'Sports' and the last is in : 'Househol

Sorting Facets by First Occurrence

2009-11-30 Thread Cory Watson
I'm working on replacing a custom, internal search implementation with Solr. I'm having great success, with one small exception. When implementing our version of faceting, one of our facets had a peculiar sort order. It was dictated by the order in which the field occurred in the results. The f

Re: Sorting facets

2006-11-04 Thread Walter Lewis
Yonik Seeley wrote: On 11/4/06, Walter Lewis <[EMAIL PROTECTED]> wrote: Is there any way to make that sort alphabetical? I have a tag cloud style display in mind. Not currently. Is there any benefit of doing so in the server rather than the client? Only that I don't have to write the code. :

Re: Sorting facets

2006-11-04 Thread Yonik Seeley
On 11/4/06, Walter Lewis <[EMAIL PROTECTED]> wrote: Yonik Seeley wrote: > For facet.field, If you don't put a limit on the number of facets (via > facet.limit or f.field.facet.limit) they won't be sorted. ... which sort is by number of matches descending, and for many probably the single most use

Re: Sorting facets

2006-11-04 Thread Walter Lewis
Yonik Seeley wrote: For facet.field, If you don't put a limit on the number of facets (via facet.limit or f.field.facet.limit) they won't be sorted. ... which sort is by number of matches descending, and for many probably the single most useful. Is there any way to make that sort alphabetical

Re: Sorting facets

2006-11-04 Thread Yonik Seeley
On 11/4/06, Walter Lewis <[EMAIL PROTECTED]> wrote: My apologies if this has been answered before but I couldn't see it in the FAQ, tutorial or wiki or the solr-user mail archives. The explanation for sorting the documents returned by a search is quite straight foward. I'm currently seeing the f

Sorting facets

2006-11-04 Thread Walter Lewis
My apologies if this has been answered before but I couldn't see it in the FAQ, tutorial or wiki or the solr-user mail archives. The explanation for sorting the documents returned by a search is quite straight foward. I'm currently seeing the facets arriving in a more random order. Is the ex