Re: Class name of parsing the fq clause

2013-10-23 Thread Sandeep Gupta
email thread, > right? > > -- Jack Krupansky > > -Original Message- From: Sandeep Gupta > Sent: Wednesday, October 23, 2013 3:58 AM > To: solr-user@lucene.apache.org > Subject: Re: Class name of parsing the fq clause > > > Thanks Jack for detailing out the p

Re: Class name of parsing the fq clause

2013-10-23 Thread Jack Krupansky
Subject: Re: Class name of parsing the fq clause Thanks Jack for detailing out the parser logic. Would it be possible for you to say something more about filter cache code flow... sometimes we do not use fq parameter in query string and pass the raw query Regards Sandeep On Mon, Oct 21

Re: Class name of parsing the fq clause

2013-10-23 Thread Sandeep Gupta
nerated class, org.apache.solr.parser.**SolrQueryParserBase.java. > > Good luck! Happy hunting! > > -- Jack Krupansky > > -Original Message- From: YouPeng Yang > Sent: Monday, October 21, 2013 2:57 AM > To: solr-user@lucene.apache.org > Subject: Class name of parsing the fq cl

Re: Class name of parsing the fq clause

2013-10-21 Thread YouPeng Yang
t; generated by JFlex, and a lot of the logic is in the base class of the > generated class, org.apache.solr.parser.**SolrQueryParserBase.java. > > Good luck! Happy hunting! > > -- Jack Krupansky > > -Original Message- From: YouPeng Yang > Sent: Monday, October 21, 2013 2

Re: Class name of parsing the fq clause

2013-10-21 Thread Jack Krupansky
the generated class, org.apache.solr.parser.SolrQueryParserBase.java. Good luck! Happy hunting! -- Jack Krupansky -Original Message- From: YouPeng Yang Sent: Monday, October 21, 2013 2:57 AM To: solr-user@lucene.apache.org Subject: Class name of parsing the fq clause Hi I search the solr with fq clause,which is like: fq=BEGI

Class name of parsing the fq clause

2013-10-20 Thread YouPeng Yang
Hi I search the solr with fq clause,which is like: fq=BEGINTIME:[2013-08-25T16:00:00Z TO *] AND BUSID:(M3 OR M9) I am curious about the parsing process . I want to study it. What is the Java file name describes the parsing process of the fq clause. Thanks Regards.