Re: Getting list of operators and terms for a query

2012-10-04 Thread Amit Nithian
sking? >> >> >> >> Maybe you simply need to read up on Lucene Query and its subclasses to >> >> understand what that structure looks like. >> >> >> >> -- Jack Krupansky >> >> >> >> -Original Message- From: Davi

Re: Getting list of operators and terms for a query

2012-10-04 Thread Davide Lorenzo Marino
nd its subclasses to > >> understand what that structure looks like. > >> > >> -- Jack Krupansky > >> > >> -Original Message- From: Davide Lorenzo Marino > >> Sent: Thursday, October 04, 2012 11:36 AM > >> To: solr-user@lucene.apac

Re: Getting list of operators and terms for a query

2012-10-04 Thread Amit Nithian
tand what that structure looks like. >> >> -- Jack Krupansky >> >> -Original Message- From: Davide Lorenzo Marino >> Sent: Thursday, October 04, 2012 11:36 AM >> To: solr-user@lucene.apache.org >> Subject: Re: Getting list of operators and terms for a quer

Re: Getting list of operators and terms for a query

2012-10-04 Thread Davide Lorenzo Marino
> > Maybe you simply need to read up on Lucene Query and its subclasses to > understand what that structure looks like. > > -- Jack Krupansky > > -Original Message- From: Davide Lorenzo Marino > Sent: Thursday, October 04, 2012 11:36 AM > To: solr-user@lucene.apa

Re: Getting list of operators and terms for a query

2012-10-04 Thread Jack Krupansky
-user@lucene.apache.org Subject: Re: Getting list of operators and terms for a query It's ok.. I did it and I took the query string. The problem is convert the java.lang.string (query) in a list of term and operators and doing it using the same parser used by Solr to execute the queries. 2012/10/4 Mikhai

Re: Getting list of operators and terms for a query

2012-10-04 Thread Davide Lorenzo Marino
It's ok.. I did it and I took the query string. The problem is convert the java.lang.string (query) in a list of term and operators and doing it using the same parser used by Solr to execute the queries. 2012/10/4 Mikhail Khludnev > you've got ResponseBuilder as process() or prepare() argument,

Re: Getting list of operators and terms for a query

2012-10-04 Thread Mikhail Khludnev
you've got ResponseBuilder as process() or prepare() argument, check "query" field, but your component should be registered after QueryComponent in your requestHandler config. On Thu, Oct 4, 2012 at 6:03 PM, Davide Lorenzo Marino < davide.mar...@gmail.com> wrote: > Hi All, > i'm working in a new