1

I was referring this http://sujitpal.blogspot.in/2011/02/solr-custom-search-requesthandler.html for making custom handlers in solr. They are pretty nice but conform to the old apis. Is there any similar example I can refer to for solr-4.3.0.

Apurv
  • 4,458
  • 2
  • 21
  • 31
  • I do not think the RequestHandler has been so modified that this example would not work. – JHS Jun 13 '13 at 16:03
  • What should be a sample return type of buildCustomQuery1() method and also there is no such method SolrPluginUtils.setReturnFields(req, rsp); – Apurv Jun 13 '13 at 16:49

1 Answers1

0

Your best bet is to download the Solr source and check the existing implementations Of RequestHandlers. There are some that are quiet simplistic and can give you a good grasp of the API and a starting point.PingRequestHandler comes first to mind, if your goal is to do something very simple. For more complex scenarios look for the ones that make use of components and take a look in solr config for their initialization parameters.

Best of luck!

Ion Cojocaru
  • 2,583
  • 15
  • 16