[google-appengine] Re: Using OR statement in datastore

2010-09-09 Thread timwhunt
Hey Google folks (Nick?), can you comment on any potential methods for asynchronous datastore calls (in Java)? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appeng...@googlegroups.com. To

Re: [google-appengine] Re: Using OR statement in datastore

2010-09-09 Thread Ikai L (Google)
Asynchronous datastore calls are coming in a future release. Stay tuned. On Thu, Sep 9, 2010 at 11:13 AM, timwhunt timwh...@gmail.com wrote: Hey Google folks (Nick?), can you comment on any potential methods for asynchronous datastore calls (in Java)? -- You received this message because

[google-appengine] Re: Using OR statement in datastore

2010-09-07 Thread timwhunt
If you feel you need to do separate queries and combine the results in code, you might want to check out the Twig lib if you're working in Java. Twig can do OR queries by doing multiple queries in parallel and combining the results (removing duplicates) in code. I believe (please correct if

Re: [google-appengine] Re: Using OR statement in datastore

2010-09-07 Thread Robert Kluin
To run several parallel ops in Python you can use async tools. On Tue, Sep 7, 2010 at 11:04, timwhunt timwh...@gmail.com wrote: If you feel you need to do separate queries and combine the results in code, you might want to check out the Twig lib if you're working in Java.  Twig can do

[google-appengine] Re: Using OR statement in datastore

2010-09-06 Thread Niklasro
On Sep 6, 3:53 am, killer barney ajcha...@gmail.com wrote: I'm a dunce. how does query filters help in the OR process? So do I do a query with contains dog and cat? On Sep 5, 8:44 pm, Nate Bauernfeind nate.bauernfe...@gmail.com wrote:

[google-appengine] Re: Using OR statement in datastore

2010-09-06 Thread killer barney
My scenario of create an additional generic table Animals that tabulates all of the selling action into a list and search the Animals entries for that user is what I came across to use IN And unfortuantely, my OR would be used on two different fields. I am starting to think the only solution is

[google-appengine] Re: Using OR statement in datastore

2010-09-05 Thread killer barney
I'm a dunce. how does query filters help in the OR process? So do I do a query with contains dog and cat? On Sep 5, 8:44 pm, Nate Bauernfeind nate.bauernfe...@gmail.com wrote: http://code.google.com/appengine/docs/java/datastore/queriesandindexe... See Query Filters. Should answer your how-to

Re: [google-appengine] Re: Using OR statement in datastore

2010-09-05 Thread Nate Bauernfeind
An entity must match all filters to be a result. In the JDOQL string syntax, you can separate multiple filters with || (logical or) and (logical and), although keep in mind that || can only be employed when the filters it separates all have the same field name. In other words, || is only legal in