Re: Xml Query Parser

2013-12-06 Thread Puneet Pawaia
Hi Daniel Thanks for the heads up. I'll try to get the patch integrated. Regards Puneet On 6 Dec 2013 16:39, "Daniel Collins" wrote: > You are right that the XmlQueryParser isn't completely/yet implemented in > Solr. There is the JIRA mentioned above, which is still WIP, so you could > use that

Re: Xml Query Parser

2013-12-06 Thread Daniel Collins
You are right that the XmlQueryParser isn't completely/yet implemented in Solr. There is the JIRA mentioned above, which is still WIP, so you could use that as a basis and extend it. If you aren't familiar with Solr and Java, you might find that a struggle, in which case you might want to conside

Re: Xml Query Parser

2013-12-05 Thread Puneet Pawaia
Hi Gora, Had seen that before but took a look again. Since it is not yet resolved, I assumed it is still a work in progress. Should I try an patch the current 4.6 code with the patches? How would you suggest I proceed? I am new to Solr and Java and so do not have much experience with this. Regard

Re: Xml Query Parser

2013-12-05 Thread Gora Mohanty
On 6 December 2013 11:35, Puneet Pawaia wrote: > Hi, > > I am testing using Solr 4.6 and would like to know if there is some > implementation like XmlQueryParser of Lucene in solr. [...] Please take a look at this JIRA issue: https://issues.apache.org/jira/browse/SOLR-839 Regards, Gora

Xml Query Parser

2013-12-05 Thread Puneet Pawaia
Hi, I am testing using Solr 4.6 and would like to know if there is some implementation like XmlQueryParser of Lucene in solr. I need to be able to use SpanQueries. How would one go about implementing this if it is not already implemented in solr. TIA Puneet

Re: sending a parsed query to solr (xml-query-parser, syntaxtree)

2011-03-21 Thread Erik Hatcher
ain query and additional filters separately. That was one thing that kind got me hung up on SOLR-839. Erik > So lets say that I already have a > org.apache.lucene.queryParser.core.nodes.QueryNode > > What is the proper way to send this to solr? > 1. serialize to XML and use

sending a parsed query to solr (xml-query-parser, syntaxtree)

2011-03-21 Thread karsten-solr
XML and use xml-query-parser for deserialization    (but support in Solr is not stable: https://issues.apache.org/jira/browse/SOLR-839 ) 2. serialize and deserialize with XStream 3. serialize and deserialize with NamedList (like SolrJ does this in the other direction) 4. other suggestions? If

Fwd: Microkernal architecture (was Re: XML Query)

2006-04-08 Thread Erik Hatcher
Passing on Howard's reply... Begin forwarded message: From: "Howard M. Lewis Ship" <[EMAIL PROTECTED]> Date: April 7, 2006 5:00:31 PM EDT To: Erik Hatcher <[EMAIL PROTECTED]> Subject: Re: Microkernal architecture (was Re: XML Query) Cool. Erik Hatcher wrote:

Microkernal architecture (was Re: XML Query)

2006-04-07 Thread Erik Hatcher
t way would be to add another parameter specifying the : default query syntax. : qformat=lucene // default QueryParser syntax : qformat=xml // Mark's XML query syntax : qformat=surround // Paul's surround query syntax You mean the the standard request handler? Why not ad

Re: XML Query

2006-04-07 Thread Yonik Seeley
t;> : The easiest way would be to add another parameter specifying the > >> : default query syntax. > >> : qformat=lucene // default QueryParser syntax > >> : qformat=xml // Mark's XML query syntax > >> : qformat=surround // Paul&#x

Re: XML Query

2006-04-07 Thread Erik Hatcher
2:12 PM, Yonik Seeley wrote: On 4/6/06, Chris Hostetter <[EMAIL PROTECTED]> wrote: : The easiest way would be to add another parameter specifying the : default query syntax. : qformat=lucene // default QueryParser syntax : qformat=xml // Mark's XML query syntax : qformat=

Re: XML Query

2006-04-07 Thread Yonik Seeley
On 4/6/06, Chris Hostetter <[EMAIL PROTECTED]> wrote: > : The easiest way would be to add another parameter specifying the > : default query syntax. > : qformat=lucene // default QueryParser syntax > : qformat=xml // Mark's XML query syntax > : q

Re: XML Query

2006-04-06 Thread Chris Hostetter
: Would you recomend extending StandardRequestHandler or implementing : SolrRequestHandler for the XmlRequestHandler? subclassing StandardRequestHandler doesn't really get you much at the moment. If you're interested in writing an XmlRequestHandler, i would start by refactoring the guts of Stand

Re: XML Query

2006-04-06 Thread jason rutherglen
2006 2:50:57 PM Subject: Re: XML Query : > I think someone asked about this. Seems like it would be good to : migrate to an XML HTTP POST for the query call to SolrServlet and use step one would be SOLR-7, supporting POST queries at all, step 2 would be adding support for the XML parser. :

Re: XML Query

2006-04-06 Thread jason rutherglen
Thanks, yes creating a RequestHandler is how Solr is designed to be used. - Original Message From: Chris Hostetter <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Cc: jason rutherglen <[EMAIL PROTECTED]> Sent: Thursday, April 6, 2006 2:50:57 PM Subject: Re: XML Query

Re: XML Query

2006-04-06 Thread Chris Hostetter
her parameter specifying the : default query syntax. : qformat=lucene // default QueryParser syntax : qformat=xml // Mark's XML query syntax : qformat=surround // Paul's surround query syntax You mean the the standard request handler? Why not add an XmlRequestH

Re: XML Query

2006-04-06 Thread Yonik Seeley
On 4/6/06, jason rutherglen <[EMAIL PROTECTED]> wrote: > I think someone asked about this. Seems like it would be good to migrate to > an XML HTTP POST for the query call to SolrServlet and use and extend the XML > query pieces. I have a requirement to do span queries an

XML Query

2006-04-06 Thread jason rutherglen
I think someone asked about this. Seems like it would be good to migrate to an XML HTTP POST for the query call to SolrServlet and use and extend the XML query pieces. I have a requirement to do span queries and would like to implement recomended queries and result highlighting.