hi,

 lukeresponse api's in solr provide info about the maximum no of documents
etc..

but does any one know how to get the same programatically.???
I have used the piece of code below:


                        LukeResponse lukeResponse = new LukeResponse();
                        String indexDirectory = 
lukeResponse.getIndexDirectory();
                        System.out.println("index directory   " + 
indexDirectory);
                        NamedList indexInfo = lukeResponse.getIndexInfo();
                        System.out.println("index info   " + indexInfo);
                        Integer maxDoc = lukeResponse.getMaxDoc();
                        System.out.println("Maximum no of Documents   " + 
maxDoc);


but i am geting null values .
how do i bind the luke with solr.
p.s. i have registered the luke response handler in the solr-config.xml


-- 
View this message in context: 
http://lucene.472066.n3.nabble.com/luke-responses-of-solr-tp742198p742198.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to