Limit output from MoreLikeThis to Solr

I am trying to use MoreLikeThis to get all similar documents, but not documents with a specific type of content.

Thus, the first request should find one document that I want to get "More Like This" of - and the second request should limit such documents to non-pdf (-contenttype: pdf)

Does anyone know if this is possible?

thank

+5
source share
1 answer

When using MoreLikeThisHandler, all common parameters applied to the mlt result set. Thus, you can use the fq parameter to exclude your PDF documents from mlt results:

http://localhost:8983/solr/mlt?q=test&mlt.fl=text&fq=-contenttype:pdf

q mlt (, , ).

+6

All Articles