Is it possible to increase the number of mlt requests in solr?

In particular, if I make a request using the solr mlt handler ( http://wiki.apache.org/solr/MoreLikeThisHandler ) and stream.body to deliver the source document, is there a way to increase the resulting documents based on the age of the document?

I already know how to do this for a regular query using dismax ( http://wiki.apache.org/solr/FunctionQuery#Date_Boosting ), but I cannot fully understand the magic of the spell to do this for the mlt handler.

+3
source share
1 answer

It appears that the mlt handler is written to handle one of two cases:

  • q=[typical query goodness which can include date boosting]
  • stream.body=[url]

q, stream.body , , , , , , , MoreLikeThisHandler.


: ,

  • MLT (, mlt.interestingTerms=details&mlt.boost=true&rows=0)
  • (1), Solr ( MLT) , .
+1

All Articles