Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
316 views

Google Appengine: Is This a Good set of Entity Groups?

I am trying to wrap my head around Entity Groups in Google AppEngine. I understand them in general, but since it sounds like you can not change the relationships once the object is created AND I have ...
3
votes
1answer
170 views

XG-Transactions Fail in Google App Engine's Local Java Server — Run fine when deployed on Live GAE

I'm need to use XG (Cross group) transactions across some of my entity groups in Google App Engine. Unfortunately when I run any of these operations on my local Jetty (Eclipse) server, the App Engine ...
1
vote
1answer
222 views

Handling conflict with entity group transactions in Azure

I'm currently writing a method which, in order to reduce transaction costs, inserts entities into Azure Table Services in batches of 100. The entities inserted are immutable. I.e. if the PartitionKey ...
0
votes
2answers
137 views

How to create unique key names in google app engine

I'm having trouble figuring out how to create unique key names for my online election app. Here is a typical set of relevant entities: 1 Election 5 Candidates 100,000 Voters up to 100,000 Votes I ...
0
votes
4answers
911 views

How to create entities in one Entity group?

I am building an app based on google app engine (Java) using JDO for persistence. Can someone give me an example or a point me to some code which shows persisting of multiple entities (of same type) ...