Hi, My application is working fine with normal search (*/select?q=*) using SOLR.
Normal Query URL: solr/select?q=title:lovely Now want to implement More Like This (MLT) in my application. Configured MLT in SOLr below like this. solrconfig.xml -------------- <requestHandler name="/mlt" class="solr.MoreLikeThisHandler"> <lst name="defaults"> <str name="mlt.fl">title</str> <str name="mlt.mintf">1</str> <str name="mlt.mindf">2</str> <str name="mlt.boost">true</str> </lst> </requestHandler> URL : solr/mlt?q=title:lovely&mlt.fl=title im getting results and count with MLT same like normal select query. Can you please guide me if i did any wrong configurations for MLT ??? Thanks in Advance, AnilJayanti -- View this message in context: http://lucene.472066.n3.nabble.com/same-results-for-select-and-More-Like-This-MLT-search-tp4011563.html Sent from the Solr - User mailing list archive at Nabble.com.