0

My question is very simple, can a More like this query be performed using SolrTemplate in Spring data? I cannot find the class MoreLikeThisQuery like the one in Elastic Search.

Thanks in advance.

italktothewind
  • 1,950
  • 2
  • 28
  • 55

1 Answers1

1

No, there is no functionality inside Spring Data Solr, however, this is relatively easy to add such functionality by yourself.

In short terms, you need to add a Solr Server RequestHandler, that will use default solr.MoreLikeThisHandler and just invoke this handler from the repository.

There is a nice blog post about it here, containing all needed details.

Mysterion
  • 9,050
  • 3
  • 30
  • 52