Tagged Questions
0
votes
1answer
47 views
Google Cloud Datastore vs Google App Engine
I was having a look at the new Google Cloud Datastore and looks great. But there is something I could not understand... is it supposed to substitute Google App Engine Datastore? How can I use it ...
3
votes
1answer
135 views
GAE development server keep full text search indexes after restart?
Is there anyway of forcing the GAE dev server to keep full text search indexes after restart? I am finding that the index is lost whenever the dev server is restarted.
I am already using a static ...
2
votes
2answers
258 views
how to convert the string version of a key back into a form that I can use the get() function on to get the entity instance
class Key(encoded=None)
A unique key for a Datastore object.
A key can be converted to a string by passing the Key object to str(). The string is "urlsafe"—it uses only characters valid for use in ...
0
votes
1answer
154 views
How to easily insert into objectify DB
I have an GAE Server with an objectify database.
I am looking for a way to insert many line into my database.
I tried to do a main like this:
public static void main(String[] args) {
Objectify ofy = ...
1
vote
1answer
135 views
ClassNotFoundException: org.datanucleus.store.appengine.jpa.DatastorePersistenceProvider
I try to start an Google appengine application in my eclipse.
I have the Google plugin and I set the sdk for my application.
But, when I start this one, I get the following error:
...
0
votes
1answer
115 views
Google App Engine: Persist database content on a user's account
Being new to Google App Engine, I've got a question related to this one:
Storing data on a user's Google's account
Here is what I actually want to do:
Create an application using entirely ...
3
votes
1answer
97 views
Objectify4 query a list attribute with a list condition
I have an object called Guy which has an attribute girlfriends type Key[]
Given a list of Longs which are the Girl's ids I want to query all the Guy's which have any of these girls as girlfriend.
...
0
votes
2answers
353 views
Google App Engine DataStore - How to select parent entities from keys of a child table in Java in an efficient way?
I am trying translate this Python code to Java from the presentation
Building Scalable, Complex Apps on App Engine,
Is there support on GAEJ to do this?
indexes = db.GqlQuery( "SELECT __key__ ...
7
votes
4answers
857 views
Google App Engine JDO 3
Google just came out with JDO 3.0 (which uses DataNucleus 2.0) for Google App Engine, and I want to use it, since it conveniently supports unowned relationships. I've been trying for days, but I ...
0
votes
2answers
112 views
A tool to browse/extract data from the Google App Engine Datastore?
I'm looking for tool (data extract utility) to browse/extract data from the Google App Engine Datastore. I found one but it hasn't been released - GAEBrowser. Does anybody know of a similar tool? ...
3
votes
2answers
186 views
Why Email, Username, PostalCode, etc as entities in GAE Datastore
I have seen the in GAE datastore there are so many entity which at the end are Strings, at least apparently.
List of GAE Java Datastore Entities
I'd like to know the underneath reason for that? ...
0
votes
1answer
160 views
AddFilter with ID/NAME
is possible with addFilter get a query with ID/Name of my Entity?
I try:
query.addFilter("_key_", Query.FilterOperator.EQUAL,18);
query.addFilter("id", Query.FilterOperator.EQUAL,18);
...
2
votes
1answer
325 views
How do you reset the Google AppEngine Datastore Quota Exceeded condition?
If you have a application that exceeds that Datastore quota of 1 Gig (Master/Slave configuration) How do you clear the condition?
I have an application called "parking-helper" and it has a Total ...
3
votes
1answer
234 views
Google App Engine Database : disk usage
I have a Google App engine Application storing 135 MBytes into its datastore, however when I check my quotas It tells me that I'm using 76% of my Free 1gb of stored data.
Is it because of the index ? ...
0
votes
2answers
770 views
Filter by part of date
My model
class BaseArticleModel(polymodel.PolyModel):
title = db.StringProperty()
created_at = db.DateProperty(auto_now_add=True)
updated_at = db.DateProperty(auto_now=True)
class ...
0
votes
1answer
671 views
Google App Engine unique=True? [duplicate]
Possible Duplicate:
How do I define a unique property for a Model in Google App Engine?
I can't seems to find a way to work the unique property for a model. I followed How do I define a ...
4
votes
3answers
1k views
Video website on google application engine
I am going to work on a video website where users/admin will be able to upload the videos and play them using some opensource javascript player. However, I want to know if it is a good idea to start ...
1
vote
3answers
297 views
How to query on ReferenceProperties?
Assume:
class Pet (db.model):
owner = db.ReferenceProperty(User)
vet = db.ReferenceProperty(Vet)
name = db.StringProperty()
How do I query for Pets that have user Owner A and Vet B? I assume ...
0
votes
2answers
731 views
Save gwt entities to google application engine datastore with jdo, using rpc
Hello iam new to GWT framework. I want to persist my domain objects/entities to google application engine datastore using rpc. A simple implementation to test if i can make multiple rpc calls ( ...
0
votes
2answers
82 views
Model relationship to html template
I've been struggling for this issue for a few hours - I know there's probably a simple solution that I'm overlooking.
I have a one to many relationship with my models.
I have need to return all rows ...
2
votes
1answer
733 views
Selecting Datastore ID in Google App Engine?
I'm trying to make a query that selects everything where the id is 6. The problem is that I cant seem to get it to work. This is what the code looks like at the moment:
query = ...
3
votes
1answer
852 views
Reading zip files stored in GAE Blobstore
I have followed the sample code below to upload a zip file in the blobstore. I am able to upload the zip file in but i have some concerns reading the file.
Sample Code ...
1
vote
1answer
290 views
GAE - retrieving the last entry (python)
I am trying to get the most recent data item from the datastore.
I am trying to apply the method as explained here but I am getting the object <__main__.Rep object at 0x075F1730> not the item. ...
0
votes
2answers
307 views
Getting implicit property names on a db.Model in Google App Engine?
How can I get access to the implicit property names of a db.Model in Google App Engine? In particular, assume I have the following:
class Foo(db.Model):
specific = db.IntegerProperty()
class ...
3
votes
1answer
846 views
Google App Engine-Ajax refresh from datastore using python
I have an application(developed in python) that requires a refreshed view from the datastore after every 5 seconds. I have came out with an javascript function and handle the refresh using ajax.
Ajax ...
1
vote
2answers
383 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 ...
2
votes
2answers
445 views
Can I have the benefit of parent-child relations without the cost of datastore contention?
Assumptions:
1) Google AppEngine has the concept of Entity Groups.
2) Entities in an entity group form a tree. However, as far as I understood, every put() to any entity in that tree will lock the ...
164
votes
6answers
99k views