Hi,

I am using Solr.In that i am using Standered Request handler.
- <requestHandler name="standard" class="solr.SearchHandler" default="true">
- <!--  default values for query parameters   -->
- <lst name="defaults">
  <str name="echoParams">explicit</str>
- <!--
       <int name="rows">10</int>
       <str name="fl">*</str>
       <str name="version">2.1</str>
          -->
  </lst>
  </requestHandler>
I am indexed data with that handler.In Our Schema there is a BODY Tag.In
that i stored the document content.
Now i am going to get some Most Interesting tirms from that content With
using More Like this Handler.
I configured More like this Handler In Config file like this  -
- <requestHandler name="/mlt" class="solr.MoreLikeThisHandler">
- <lst name="defaults">
  <int name="mlt.mindf">1</int>
  </lst>
  </requestHandler>

For Getting the Interesting Tirms from the Content I am hitting that query
to the Solr.
http://localhost:8081/solr1/mlt/?q=A:15&mlt.mintf=3&mlt.minwl=2&mlt.interestingTerms=details&mlt.boost=true&mlt.match.include=false&mlt.fl=BODY&start=0&rows=1&mlt.maxntp=200

*For this i am getting Some interesting Tirms.But the Problem is that words
are note comming correctly.
like the words end with es,ies,y,ed  etc so they are coming without these.*
*
Example -
Duty comes Like Duti
puts comes like put
series comes like seri
settled comes like settl
*
So Please help me how can i get the exact words in More Interesting Tirms.

-- 
DEEPAK AGRAWAL
+91-9379433455
GOOD LUCK.....

Reply via email to