Tagged Questions
1
vote
3answers
118 views
Google-App-Engine-Like Datastore for Python
Is there any software library that provides an interface for storing and querying data like the Google App Engine Datastore, but uses a local file or service instead of running on App Engine?
The ...
0
votes
1answer
92 views
GoogleApps Datastore Cons and Pros
I've been reading more about Google AppEngine and learned python in the past couple of weeks, including working with MongoDB. What I need the most is a scalable database solution. Before discovering ...
1
vote
1answer
64 views
Which database model to store data in?
I am writing an application in Google App Engine with python and I want to sort users and user posts into groups. Users will be able to tag a post with a group ID and then that post will be displayed ...
0
votes
1answer
73 views
Most Efficient Way to Related Data Entries
I am building a website using Google App Engine in Python but this question should apply to anything similar not just this specific framework. I am trying to decide between two models of relating ...
0
votes
0answers
78 views
How to group product based on attribute?
I have product data from different sources.
I want to put information related to a product in one place.
For example, I want to put information related to Iphone-5 from all sources to one place.
...
2
votes
4answers
238 views
inserting data to the google appengine's database
For my website I wanted to store the IP address of every visitor.I had been doing this with derby+Tomcat,but I don't know how to do this with google appengine. How can I insert data to appengine's ...
0
votes
1answer
65 views
How should I structure a GAE datastore to be able to grab professions related to a keyword?
If someone searches for "teeth doctor", I would like to return entries from a google app engine datastore for dentists. Similarly, "foot doctor" would return podiatrists, "childrens' doctor" ...
0
votes
2answers
492 views
Check if Google App Engine datastore entity has a particular property
I am new with developing web applications with Google App Engine.
I wanted to check for entities in my datastore which have a null value set for a list property (db.ListProperty). However, when I ...
0
votes
1answer
132 views
How to query GAE datastore to render a template (newbie level)
I'm new to programming and I'm trying to grasp the concept of the GAE datastore. I'm trying to build an app to make it easy write contracts (http://contractpy.appspot.com). In the moment, I'm passing ...
0
votes
3answers
119 views
store a calculated value in the datastore or just calculate it on the fly
I writing an app in python for google app engine where each user can submit a post and each post has a ranking which is determined by its votes and comment count. The ranking is just a simple ...
0
votes
2answers
186 views
Parent/Child key relationship design with app-engine data store
I am implementing a simple application for expenses reporting.The application will use GAE. In my application I have several entities (Classes) like Year, Month,Day, Expenses, Account and so on. The ...
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 ...
0
votes
1answer
165 views
Can I change database schema dynamically on google app engine?
I'm developing a REST google app engine application.
I want to know if it's possible to create a database schema dynamically.
What I mean is:
For example some client sends me and xml file with ...
1
vote
2answers
62 views
Data storage: “grouping” entities by property value? (like a dictionary/map?)
Using AppEngine datastore, but this might be agnostic, no idea.
Assume a database entity called Comment. Each Comment belongs to a User. Every Comment has a date property, pretty standard so far.
I ...
0
votes
1answer
131 views
Google App Engine Datastore Difficulties
I am using Google App Engine and using Google's datastore interface for a database .
My question is this , I have the following code : I have a network object that I want to either update if it ...
1
vote
1answer
63 views
GAE: Best way to add (math) all values of an integer property from multiple instances
I have about 400+ model instances of a certain model ("Grade") in my datastore. They all have an integer property called "points" (points = db.IntegerProperty(default=0)) with different values.
What ...
0
votes
1answer
182 views
GQL datastore model for product reviews - lists of keys? or ancestors?
I'm making a product review service using Google App Engine, and I'm wondering about good practice for structuring my datastore models (I'm using the "high replication" setting, and I've gathered that ...
0
votes
1answer
447 views
how i make connection to google app engine database in java
I am making a web page which create user and a page from which user will login . i don't know how i connect to database of Google app engine in java .
if someone provide me any simple example or ...
5
votes
3answers
1k views
Store ordered list in database (Gap approach)
I want to keep a large ordered list (millions of elements) in Google App Engine datastore. Fast insertion is required.
The simplest way would be adding an indexed property (or column) "order_num" ...
0
votes
3answers
367 views
How does the appengine datastore (java - JDO) store and return data, i.e. is it FIFO or LIFO? If its FIFO or NEITHER, how can I make it LIFO?
I was just wondering if I store some data chronologically, will it be returned back in the order of most-recent to least-recent OR least-recent to most-recent? For e.g. If I input data in the ...
2
votes
1answer
3k views
Retrieving key/ID values from app engine datastore?
I've got a page on my Python app which has a drop-down box of locations associated with the current user, with the names of the locations as the visible values of the drop-down box. What I want to do ...
2
votes
3answers
536 views
front-end for GAE datastore - phpMyAdmin-like for GAE
is there some front end that could allow an admin to insert, update, delete records, and create modify and drop tables from Google Application Engine datastore, just like you do with phpMyAdmin on ...
0
votes
1answer
81 views
GAE Datastore - Is there a next page / Are there x+1 entities?
Currently, to determine whether or not there is a next page of entities I'm using the following code:
q = Entity.all().fetch(10)
cursor = q.cursor()
extra = q.fetch(1)
has_next_page = False
if ...
0
votes
1answer
190 views
Retrieving an entity from GAE datastore by key
If I have the google assigned key of an entity in my datastore, say ag1iYXRjaC1nZW5lcmljchcLEgxCYXRjaGVzTW9kZWwiBUpvYiAyDA, is there a way I can easily fetch the entity by this key? I've tried using ...
3
votes
1answer
86 views
Is it possible to create references in Google App Engine?
Let's say I have a datastore that contains mother, father, and child objects. Inside the Mother and Father objects I have a field called child which stores a reference to their child. Is it possible ...
0
votes
1answer
512 views
Google app engine datastore reference or not?
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 would do it in a normal ...
2
votes
2answers
1k views
appengine: cached reference property?
How can I cache a Reference Property in Google App Engine?
For example, let's say I have the following models:
class Many(db.Model):
few = db.ReferenceProperty(Few)
class Few(db.Model):
...
1
vote
1answer
604 views
Dynamically choose which properties to write to Appengine Datastore
Has anyone tried to dynamically select which properties they want to write to an entity on appengine? For example:
I have a web form with 5 fields, and any given user will fill out some subset of ...
164
votes
6answers
99k views
109
votes
7answers
9k views
How to think in data stores instead of databases?
As an example, Google App Engine uses data stores, not a database, to store data. Does anybody have any tips for using data stores instead of databases? It seems I've trained my mind to think 100% ...