0
votes
2answers
30 views
How do I move data from local appengine datastore to remote datastore?
I can see how to download the remote datastore to local, and how to upload a CSV to the remote app engine server as outlined here:
Uploading and Downloading Data
But is there a w …
0
votes
1answer
26 views
Datastore datetimeproperty iterable?
Hi,
I have model
class info(db.Model):
user = db.UserProperty()
last_update_date = db.DateTimeProperty()
I need to retrieve last_update_date for specific user. It is wo …
0
votes
2answers
62 views
App Engine: What is the fastest way to check if my datastore query returns any result?
I like to check if there is any result for my datastore query in the Google App Engine Datastore. This is my query:
users = User.all()
users.filter("hash =", current_user_hash)
…
0
votes
1answer
14 views
How do I make a temporary backup of the local datastore in the AppEngine SDK for MacOSX
How do I make a temporary backup of the local datastore in the AppEngine SDK for MacOSX
And where are the files located?
1
vote
0answers
51 views
Bulk entity delete in Google App Engine
I'm trying to delete some unwanted data from my datastore with Java and found
some code using the DatastoreService that I modified to delete as many
entries as possible in 10 secon …
0
votes
1answer
22 views
Google app engine datastore reference or not?
hi,
i am filling up a big table with text items from different countries. My question is:
Should i use a referencePropery to link to languages in another table?. Thats the way i w …
2
votes
3answers
187 views
How would you design an AppEngine datastore for a social site like Twitter?
I'm wondering what would be the best way to design a social application where members make activities and follow other member's activities using Google AppEngine.
To be more speci …
1
vote
7answers
1k views
How to delete all datastore in Google App Engine?
Does anyone know how to delete all datastore in Google App Engine?
0
votes
1answer
21 views
App Engine: Filter for Choosing Entities with a Specific Item Present in their ListProperties
I need to filter entities based on one of their ListProperties having a certain element present. So kind of like:
entities.filter('listProp IN ',element) except where listProp an …
2
votes
5answers
105 views
How do I put a dictionary in the datastore?
Is there a good way to store a Python dictionary in the datastore? I want to do something like the following:
from google.appengine.ext import db
class Recipe(db.Model):
name …
0
votes
1answer
52 views
Query/GqlQuery .order() restricting the result set?
I just noticed a strange result from a query that I have trouble understanding. It appears as if adding an order() to a Query is limiting the results I get back.
Here is my intera …
0
votes
2answers
107 views
How do I copy local Google App Engine Python datastore to local Google App Engine Java datastore?
I have around 4000 entities that I need to insert into a Java App Engine datastore. As I understand it, only the Python version of App Engine currently has tools to upload data fr …
1
vote
1answer
20 views
Selecting a given property from a table in App Engine
Is there a way to select only a given property from the App Engine datastore?
Imagine I have an User entity with many properties, but in a given moment I just want to fetch a list …
0
votes
2answers
73 views
Google App Engine Datastore multi-field key
@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable ="false")
public class Foo implements IsSerializable {
@PrimaryKey
@Persistent(valueStrategy = IdGenerato …
0
votes
2answers
54 views
Problem in importing classes from models file in GAE
Hi,
I am very new to python and after a brief intro on to python + Google app engine, I've started to work on a pilot project. I have bulkloaded 2 entities UserDetails and PhoneBo …
