0
votes
1answer
58 views

GAE - Storing multiple OAuth access token

For a project I am working on I need to store the user access token (and auth code and refresh token I assume). I am using GAE for this and I have difficulties to design the model, which is quite ...
0
votes
1answer
46 views

How to design an “event or calendar” related database (I am trying to invent a design system tied to keys)

Technologies that I will use are : GAE Datastore and Objectify. My database is related to events and places (maybe some experts that has already designed a database similar to google calendar, or ...
0
votes
3answers
104 views

GAE Datastore Structure

I have been using Google App Engine for a few months now and I have recently come to doubt some of my practices with regard to the Datastore. I have around 10 entities with 10-12 properties each. ...
0
votes
0answers
84 views

Graph design and traversal in Google App Engine

I'm working on a program that will traverse a graph in order to establish a mathematically stable set of inputs. Some factors that are different from other graphs I've read about are that I expect to ...
0
votes
2answers
107 views

Google APP Engine datastorage design

I'm currently building a website on AppEngine using Python, and I've to store some informations on datastore. All my informations are splits in three different categories as following: 1°/- Article ...
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
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
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
222 views

App Engine datastore Model for ranking a 4 player game

Hi there I'm trying to learn the app engine datastore by modeling a db to store user rank and game scores for a 4 player game. The write throughput will be low, so I'm trying to optimize for reads, ...
1
vote
1answer
419 views

Looking for Denormalization Advice for Google App Engine

I am working on a system, which will run on GAE, which will have several related entities and I am not sure of the best way to store the data. This post is a request for advice from others who may ...
5
votes
2answers
827 views

How to model entities in Google’s Datastore

The Datastore used by Google’s App Engine, unlike a relational database engine, does not enforce schemas – instead of rows and columns, it stores entities with various properties. Nevertheless, ...
1
vote
2answers
117 views

AppEngine data strategy to handle a large index per user?

I’m building an AppEngine app in Python. For the sake of discussion, imagine I’m building a Gmail clone. Except with a million short emails per user. The point is, each user will have a large ...
1
vote
1answer
213 views

Efficiently retrieving entities that match any element of a set of ids

I'm writing software to provide feedback to people across many categories. For example, I might have 30 employees and 40 standards of evaluation (e.g. "arrives on time," "is polite," "appears to ...
4
votes
1answer
97 views

database modeling for google app engine for multiple revison of entity

in my application ( kind of wiki clone ) - an article is frequently changing. and i need to track all changes that are done on that article. { text only. } one crude way i have done it, is to add a ...
3
votes
2answers
505 views

database design in google app engine

i am designing a simple project based to do list. the idea is to define tasks under project ( no workflow - just "task is completed" or not is required. ) in a hirarchial way. i.e. each task has ...
6
votes
1answer
1k views

Schema-less design guidelines for Google App Engine Datastore and other NoSQL DBs

Coming from a relational database background, as I'm sure many others are, I'm looking for some solid guidelines for setting up / designing my datastore on Google App Engine. Are there any good rules ...
2
votes
1answer
234 views

Why does Google app engine recognize URLs, phone numbers and similar as special data types?

Just wondering... why does Google app engine recognize "special" string data types such as Link, Email, PhoneNumber, PostalAddress and such? They seem to be simple text types, and don't even have any ...
9
votes
3answers
2k views

App engine datastore: How to implement Posts and Tags without joins?

I'm building an application in Google App Engine (Java), where users can make posts and I'm thinking in adding tags to these posts, so I will have something like this: in entity Post: public ...