1
vote
2answers
25 views
In a BigTable datastore, with regards to concurrency, how do I “lock” an entity?
I am not sure how to handle this in a BigTable datastore.
Imagine the following example (just to explain the concept. The example does not match my actual data model):
I have a …
0
votes
1answer
15 views
gwt and dynamic server processing. Do they belong together?
I am eager to build an application with Gwt and App Engine. I'm more familiar with App Engine: creating dynamic html pages with servlets and jsp's. I'm wondering however, if this …
0
votes
1answer
20 views
iphone table view delete entry and update app engine db
Hi,
I have a tableview with data, that i post to the app engine database.
Whenever i delete an entry in the table, i want to delelte the item in the app engine database as well. H …
0
votes
1answer
24 views
django template url function not matching in app
I have a django project set up with an app called pub. I'm trying to set it up so that I can include urls.py from each app (there will be more as I go) in the top-level urls.py. …
0
votes
1answer
32 views
upload file with java servlet to app engine
Hi
I would like to be able to have the user upload short audio samples to my app-engine application and store them in the provided datastore. I'm using the Java servlet version. …
0
votes
1answer
17 views
In Google App Engine, what happens when I change the Class related to a persisted object?
My model class looks as follows:
from google.appengine.ext import db
class SnapShotBase(db.Model):
'''
The base class from which all entity snapshots will inherit.
''' …
1
vote
2answers
26 views
Printing several binary data fields from Google DataStore?
I'm using Google App Engine and python for a web service. Some of the models (tables) I have in my web service have several binary data fields in them, and I'd like to present this …
0
votes
1answer
30 views
How-to create a REST service with Google App Engine and Python?
I want to create a RESTFUL web service that gets a request via the URL that is accessed and then returns the appropriate document for that client. For example, if it was a weather …
0
votes
1answer
12 views
gql query on date
How do I apply a GQL query such that it lists the user_name in the UserInformation model table of those who have logged in within the last 3 days?
0
votes
2answers
21 views
django unprintable templatesyntaxerror object caused by urlconf?
I'm trying to get a django project set up, and I seem to be having trouble with my urlconf. I'm not sure what the deal is, and the error below isn't entirely helpful to me. I don …
1
vote
1answer
61 views
Puzzling App Engine Datastore Issue (ListProperty)
Ok so I have the same python code locally and in the gae cloud.
when I store an entity locally, the ListProperty field of set element type datetime.datetime looks like so in the D …
0
votes
2answers
28 views
GAE Image Posting to Datastore through Django Form
I'm working on a little side project that involves posting an avatar to a users profile page, seems straight forward enough. I'm following the instructions from the "Using the Imag …
0
votes
1answer
16 views
How do I activate the Interactive Console on App Engine?
I have an issue and I'd like to use the Interactive console you get on the local dev server (http://localhost:8080/%5Fah/admin) on the cloud server to make sure a query is working …
0
votes
1answer
38 views
Where can I find a (current) example of code to bulk upload data to Google AppEngine? (For localhost, too.)
I've tried to do it like they describe in the AppEngine docs but I can't get it to accept my upload. (I haven't tried to download.) I want to get it working in the development envi …
1
vote
1answer
29 views
How do I unit test Django views on the Google App Engine?
I am struggling to run unit tests using the Django Client class on the Google App Engine. I downloaded GAEUnit (v2.0a for Django) and I am trying to use that as my testing framewor …
