Have you made that class i want to integrate the surround plugin with solr .
--
View this message in context:
http://lucene.472066.n3.nabble.com/Question-About-Writing-Custom-Query-Parser-Plugin-tp2360751p3527092.html
Sent from the Solr - User mailing list archive at Nabble.com.
Yes, you need to create both a QParserPlugin and a QParser implementation.
Look at Solr's own source code for the LuceneQParserPlugin/LuceneQParser and
built it like that.
Baking the surround query parser into Solr out of the box would be a useful
contribution, so if you care to give it a litt
Any One
On Thu, Jan 27, 2011 at 1:27 PM, Ahson Iqbal wrote:
> Hi All
>
> I want to integrate lucene Surround Query Parser with solr 1.4.1, and for
> that I
> am writing Custom Query Parser Plugin, To accomplish this task I should
> write a
> sub class of "org.apache.solr.search.QParserPlugin" an
Hi All
I want to integrate lucene Surround Query Parser with solr 1.4.1, and for that
I
am writing Custom Query Parser Plugin, To accomplish this task I should write a
sub class of "org.apache.solr.search.QParserPlugin" and implement its two
methods
public void init(NamedList nl)
public QPar