I created two indexes on the same class (which has about 100k records):

   1. create index Widget.a on Widget (a) notunique
   2. create index Widget.b on Widget (b) notunique


Queries "select * from Widget where a='abc'" and "select * from Widget 
where b='xyz'" are now MUCH faster than before the indexes (as expected). 
 But this query is no faster (still takes about 3 seconds): "select * from 
Widget where a='abc' OR b='xyz'".

Is this a bug or just a current limitation?  Is there any way to use 
indexes to speed up the OR query?

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to