Hi,

Even if you use the /solr/select-version of MLT, I guess that just
adding the fq-parameter may work.

If you would like to add the MLT request handler, add something like

<requestHandler name="mlt" class="solr.MoreLikeThisHandler">
    <lst name="defaults">
      <str name="mlt.fl">title,data</str>
      <int name="mlt.mindf">1</int>
    </lst>
  </requestHandler>

as a request handler plugin in your solrconfig.xml file. If you are
running on Tomcat you will have to make adjustments to you
web.xml-file.

/Clas, Frisim.com


On Mon, Jan 19, 2009 at 3:15 PM, Andrew Ingram <a...@andrewingram.net> wrote:
> I think the problem might be that I'm using the standard handler with the
> mlt:true parameter. The MLT handler doesn't seem to be mentioned in my
> config file, do you know how I can enable it?
>
> Regards,
> Andrew Ingram
>
> Clas Rydergren wrote:
>>
>> Hi,
>>
>> Have you tried to add a filter directly to the /solr/mlt?q=-request?
>> Try to add "&fq=available:yes", and see if you can limit the
>> MoreLikeThis-documents to documents that has "yes" in the
>> "available"-field. I have had some success with this approach.
>>
>> /Clas, Frisim.com
>>
>

Reply via email to