Re: How to get score with getDocList method Solr API

2013-11-19 Thread Amit Aggarwal
Hello shekhar , Thanks for answering . Do I have to set GET_SCORES FLAG as last parameter of getDocList method ? Thanks On 19-Nov-2013 1:43 PM, "Shalin Shekhar Mangar" wrote: > A few flags are supported: > public static final int GET_DOCSET= 0x4000; > public static final int TERM

Re: How to get score with getDocList method Solr API

2013-11-19 Thread Shalin Shekhar Mangar
A few flags are supported: public static final int GET_DOCSET= 0x4000; public static final int TERMINATE_EARLY = 0x04; public static final int GET_DOCLIST =0x02; // get the documents actually returned in a response public static final int GET_SCORES =

How to get score with getDocList method Solr API

2013-11-18 Thread Amit Aggarwal
Hello All, I am trying to develop a custom request handler. Here is the snippet : // returnMe is nothing but a list of Document going to return try { // FLAG ??? DocList docList = searcher.getDocList(parsedQuery, parsedFilterQueryList, S