Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created a request handler in Solr that uses dismax and limits my query to certain fields and adds boosts for relevancy on the "title" field.

This all works fine when I go directly to Solr using an http request in a browser. However my question is whether I can use the request handler if I am accessing Solr using SolrJ?

It would be better if I could control boosts and filters and so on in the request handler rather than having to make code changes but I can't see how to specify a request handler in the API.

Any ideas?

share|improve this question

1 Answer

up vote 4 down vote accepted

In the class SolrQuery, there is a method setQueryType that allows you to do that. You pass the name of the request handler as defined in solrconfig.xml (probably 'dismax').

share|improve this answer
Thanks! That works. – Pinguthepenguin Jun 18 '10 at 15:48
As of Solr 3.6 the requestDispatcher handling of the qt param is set to false by default. See the solr wiki. – cuh Aug 10 '12 at 11:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.