You can transform "or" queries into separate queries and run them in parallel.
Looking for A & (B|C) is the same as looking for (A&B) | (A&C). Just run two different queries and merge the results. Of course it can get a lot more complicated... you can spend the rest of your life on query optimization. -Eric On Thu, Apr 30, 2015 at 1:49 PM, vaibhav thapliyal < [email protected]> wrote: > Hi > > I was trying to run boolean and queries and successfully did so using the > intersecting iterator. Can I tweak this iterator to successfully run > boolean OR queries or should I consider making a iterator from scratch for > this purpose. Could anyone so give me brief overview about the logic > inside the intersecting iterator so that the modification part becomes > easier. I have a document partitioned index table as described in the > documentation. > > Thanks > Vaibhav >
