Re: [google-appengine] startsWith multiple times

2011-02-15 Thread Robert Kluin
Hi Jan, Based on the information you provide its hard to say if that's a good idea or not; perhaps for your problem it is the best way, maybe it is not. If you are going to run multiple queries, I would try to run them asynchronously to reduce the latency. The idea is not necessarily without

[google-appengine] startsWith multiple times

2011-02-15 Thread Jan
In our company we feel obstructed by the restriction that a query may only contain one inequality filter like startsWith. Currently we are thinking about performing two independent startsWith queries and combining the result inside the service method. Do you think this is a good idea? Does anybody