Re: problems with boolean query

2013-11-29 Thread tkurz
Thank you very mutch! That fixed the problem! -- View this message in context: http://lucene.472066.n3.nabble.com/problems-with-boolean-query-tp4103770p4103839.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: problems with boolean query

2013-11-28 Thread Jack Krupansky
Yeah, purely negative sub-queries have had problems, so rewrite: fq = (access:Allow*) OR (-access:*) as fq = (access:Allow*) OR (*:* -access:*) -- Jack Krupansky -Original Message- From: Thomas Kurz Sent: Thursday, November 28, 2013 10:34 AM To: solr-user@lucene.apache.org Subject: