On Mon, Jul 20, 2009 at 2:12 PM, dipanjan_pramanick < dipanjan_praman...@infosys.com> wrote:
> > Its true that there is a design flaw, because of what we need to support a > huge list of OR conditions through Solr. > But still I would like to know if there is any other configuration other > than the one in solrConfig.xml, through which we can pass more than 1024 OR > conditions. > > <maxBooleanClauses>1024<maxBooleanClauses> > > > Regarding HTTP Post, in Solr 1.3, it is only accepts request in url form > not as request parameter or request object. That's another issue. Hence we > need to send the query in url form only. > > Changing the value of maxBooleanClauses in solrconfig.xml is sufficient. The problem here is that you may be exceeding the maximum allowed size of an HTTP GET request (is that 2KB?). You must use POST request to send such a huge query string. Again, it will help if you can post the complete stack trace of the error. -- Regards, Shalin Shekhar Mangar.