Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
79 views

When is the ConcurrentModificationException thrown in GAE?

I am reading the official GAE documentation on transactions and I can't understand when a ConcurrentModificationException is thrown. Look at one of the examples which I am copy-pasting here: int ...
4
votes
1answer
180 views

Change|Assign parent for the Model instance on Google App Engine Datastore

Is it possible to change or assign new parent to the Model instance that already in datastore? For example I need something like this task = db.get(db.Key(task_key)) project = ...
3
votes
3answers
214 views

datastore transaction restrictions

in my google app application, whenever a user purchases a number of contracts, these events are executed (simplified for clarity): user.cash is decreased user.contracts is increased by the number ...
2
votes
3answers
54 views

Can I access Datastore entities of my other Google App Engine Applications

As we know in Google App engine, for each registered email account , we are allowed to make 10 application. Now, I need to share entities among the applications. Is this possible ? If yes, how is it ...
2
votes
1answer
65 views

Inserting two enties in a transaction & getting 'Cannot operate on different entity groups in a transaction' Error

My end goal is simple. I need to have an entity that has two, unique, indexed fields that can operate like keys. If this was a SQL database, the equivelant would be having two fields that are ...
2
votes
2answers
84 views

allowing user to cast one vote anonymously with GAE

I have a GAE app for voting, where each voter is sent a unique key via email and then uses that key to vote at a web page. I'd like to ensure that each voter can only cast one vote, and also that the ...
2
votes
3answers
854 views

AppEngine: Maintaining DataStore Consistency When Creating Records

I've hit a small dilemma! I have a handler called vote; when it is invoked it sets a user's vote to whatever they have picked. To remember what options they previously picked, I store a VoteRecord ...
1
vote
2answers
100 views

Cheapest way to retrieve/record multiple entities on GAE

I have this specific case that bring me some doubts: My class A have a one-to-many relationship with B: A 1----->* B Which, as far as I know, makes their related instances belong to the same ...
1
vote
1answer
49 views

Low-level operations with Appstats in GAE

After GAE's new pricing I'm having serious difficulties in optimizing my entities. I'm aware of the high-level to low-level operations conversion rules and I'm using Appstats to observe the number of ...
1
vote
1answer
78 views

Cross Group (XG) Transactions and Further Explanation of use

The most recent release of the GAE states the following changes: Datastore Cross Group (XG) Transactions: For those who need transactional writes to entities in multiple entity groups (and ...
1
vote
1answer
118 views

Relational data model to Google datastore mapping

First off, I come from a RDBMS/SQL/C++/Java/Python background and I'm a newbie to Gaelyk, the Google API and the Google datastore. I like to model (using flowcharts for code and DB modeling tools ...
1
vote
1answer
115 views

Providing arguments to transactions in Datastore Plus (NDB)

I'm having trouble working out how to pass in arguments into transactions when using Datastore Plus. Could someone please rewrite this regular-datastore example code? from google.appengine.ext ...
1
vote
2answers
109 views

AppEngine Analytics Model with Lists of Times

I want to log analytics data (when someone loads page X, loads a js plugin, cancels a transaction) for my AppEngine app. I'm going to set it up as follows: 1. Event X occurs. 2. Add to taskqueue to ...
1
vote
2answers
128 views

Concurent Access to datastore in app engine

i want to know if db.run_in_transaction() acts as a lock for Data store operations and helps in case of concurrent access on same entity. Does in following code it is guarantied that a concurrent ...
1
vote
2answers
165 views

Google App Engine counters

For all my data in the GAE Datastore I have a model for keeping track of counters/total number of records (since we can't use traditional SUM queries). I want to know the most efficient way of ...
0
votes
2answers
84 views

How can I create two unique, queriable fields for a GAE Datastore Data Model?

First a little setup. Last week I was having trouble implementing a specific methodology that I had constructed which would allow me to manage two unique fields associated with one db.Model object. ...
0
votes
1answer
215 views

Does db.run_in_transaction return anything?

I'm mimicking a transaction example I found in the Taggable Mixin, but it's not behaving in the same manner. def txn(): // statements omitted for brevity blog_index.put() new_post = ...