Re: schema configuration with different kind of score report

2009-08-18 Thread Chris Hostetter
: Hence, some sort of different query will be applied, which I am unable to : ascertain. well that would be step one. before anyone can help you generate a "different kind of score report" you have to be able to describe the general algorithm you want for determining when there is a match and

Re: schema configuration with different kind of score report

2009-08-17 Thread Avlesh Singh
I am definitely missing something here. Do you want to fetch a document if one of its field contains "ab" given a search term "abc"? If you can design a field and query your index so that you can fetch such a document, Lucene (and hence Solr) would automagically give you the relevance score. Cheer

Re: schema configuration with different kind of score report

2009-08-17 Thread Sushan Rungta
This doesnot solve my purpose, as my requirement is different. Kindly check the document "d", which I have mentioned & the computation of score for that kind of document will be different. Hence, some sort of different query will be applied, which I am unable to ascertain. Regards, Sushan R

Re: schema configuration with different kind of score report

2009-08-17 Thread Avlesh Singh
Why not stick to lucene score for each document then building your own? The easiest way of getting the relevance score for each document is to add the "debugQuery=true" parameter to your request handler. Cheers Avlesh On Mon, Aug 17, 2009 at 12:32 PM, Sushan Rungta wrote: > Kindly guide me that