Re: Chaining plugins

2014-01-02 Thread elmerfudd
If I want to do it? do i have to work with the source code version of solr? if so, where is the default search handler located? -- View this message in context: http://lucene.472066.n3.nabble.com/Chaining-plugins-tp4108239p4109102.html Sent from the Solr - User mailing list archive at

Re: Chaining plugins

2013-12-31 Thread Liu Bo
Hi I've done similar things as paul. what I do is extending the default QueryComponent and overwrite the preparing method, then I just change the solrparams according to our logic and then call super.prepare(). Then replace the default QueryComponent with it in my search/query handler. In this

Re: Chaining plugins

2013-12-30 Thread Chris Hostetter
You don't need to write your own handler. See the previpous comment about implementing a SearchComponent -- you can check for the params in your prepare() method and do whatever side effects you want, then register your custom component and hook it into the component chain of whatever handler

Re: Chaining plugins

2013-12-30 Thread elmerfudd
.472066.n3.nabble.com/Chaining-plugins-tp4108239p4108662.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Chaining plugins

2013-12-26 Thread Kydryavtsev Andrey
he query to the default search handler so the results will be >>  generated there. >>  It's like it is a transparent plugin and the data will only go through it. >> >>  How can this be achieved . >>  thanks ahead :) >> >>  -- >>  View this messag

Re: Chaining plugins

2013-12-26 Thread Paul Libbrecht
to the default search handler so the results will be > generated there. > It's like it is a transparent plugin and the data will only go through it. > > How can this be achieved . > thanks ahead :) > > > > -- > View this message in context: > http://

Chaining plugins

2013-12-26 Thread elmerfudd
View this message in context: http://lucene.472066.n3.nabble.com/Chaining-plugins-tp4108239.html Sent from the Solr - User mailing list archive at Nabble.com.