[appengine-java] GQL support in Java

2012-02-16 Thread kt
Hi, Is there a plan of supporting GQL in Java AppEngine? If yes, when can it be expected ? -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-

[appengine-java] updating a property enmass in several entity

2012-01-23 Thread kt
Hi, I have a situation where I need to update a property in several entities amass. Something similar in SQL would be : update mytable set mycolumn = (mycolumn + 10); I do not want to iterate through all entities since it will be very expensive. Any ideas? -- You received this message because

Re: [appengine-java] Data updated using key is not shown when searched through other attribute

2011-09-06 Thread kt
Thanks Simon. Changing the setting worked for me. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/BdwPK3qhlEcJ. To post to this group

Re: [appengine-java] Data updated using key is not shown when searched through other attribute

2011-09-05 Thread kt
Thanks Simon and J. I read through the links Simon shared. Yes, I am using the default database configuration which is HRD. I see that for most queries it provides eventual consistency. However it has come as a suprise to me that when I test, I hit upon nconsistency once in 5 times. That's like

Re: [appengine-java] Data updated using key is not shown when searched through other attribute

2011-09-05 Thread kt
Yes, it is in local, eclipse (Helios) + AppEngine plugin. I have not reached production yet. Are you saying it may happen in dev, but not in prod? So I dont need to worry about it? -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group.

[appengine-java] Data updated using key is not shown when searched through other attribute

2011-09-05 Thread kt
Hi, Here is my situation: 1. Store an entity with 5 properties. 2. Update one property of an entity by looking up the entitiy using it's key. 3. Now search the database for all saved entities using a property based search. When I look at the property I updated in step 2 in the same entity returne