Re: SORTING RESULTS BASED ON RELAVANCY

2013-09-18 Thread Chris Hostetter
: Unless i'm missing something: FuzzyQuery defaults to using the : "TopTermsScoringBooleanQueryRewrite" method based on the terms found in : the index that match the fuzzy expression. So the results of a simple : fuzzy query should already come back based on the tf/idf scores of the : terms.

Re: SORTING RESULTS BASED ON RELAVANCY

2013-09-18 Thread Chris Hostetter
: Thanks for you replycan you please check the following details and : give me suggestions how can i do it, then it will be more helpful to me you need to show us some examples of your documents and the debugQuery=true output for those documents for us to better understand the behavior

Re: SORTING RESULTS BASED ON RELAVANCY

2013-09-18 Thread PAVAN
Hi alex, Thanks for you replycan you please check the following details and give me suggestions how can i do it, then it will be more helpful to me i am passing query parameters like http://localhost:8080/solr/core/c=cityname&s=iphne+4&s1=iphne~0.5&s2=4~0.5 here "s" is the main strin

Re: SORTING RESULTS BASED ON RELAVANCY

2013-09-18 Thread Gora Mohanty
On 18 September 2013 12:39, Alexandre Rafalovitch wrote: > The default sort is by relevancy. So, if you are getting it in the wrong > order, it think it is relevant in different ways. Depending on algorithm > you use, there are different boosting functions. [...] Also, you can get an explanation

Re: SORTING RESULTS BASED ON RELAVANCY

2013-09-18 Thread Alexandre Rafalovitch
The default sort is by relevancy. So, if you are getting it in the wrong order, it think it is relevant in different ways. Depending on algorithm you use, there are different boosting functions. You may need to give more details. Algorithm, how would you know if relevance sorting working, etc. Re