Hi,
Does anyone have an idea how the use of multiple ORs impacts performance in app engine (cpu time use maybe?). Something like:
select from users where username = 'bob' or
username = 'jane' or
username = 'greg' or
username = 'Nth user';
I think we can only layer 30 of these in at once. I'm curious if this operation would be done in parallel (all the ors go out at once) or each is done serially.
Thanks