To select all, do star-colon-star *:* To select a negative clause do *:* AND -clause To select a wildcard, h* and h?* work fine. Star as the only character, or star or ? as the first character are not allowed.
These blow up with "too many clauses": H*? and H*H and H*H*. And when they don't blow up (Solr 1.3) they do not return any results when they should. Lance -----Original Message----- From: Choi, David [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2008 2:41 PM To: solr-user@lucene.apache.org Subject: Solr has limit to number of returned results? Hi everyone, I have a (hopefully) basic question.. Does solr have a max. limit on the number of returned results? I get the following error: "HTTP Status 500 - maxClauseCount is set to 1024 org.apache.lucene.search.BooleanQuery$TooManyClauses" when I do a query that essentially amounts to asking for q=* thanks - David Choi