Skip to content Skip to sidebar Skip to footer
Showing posts with the label Google Cloud Datastore

How To Get The Distinct Value Of One Of My Models In Google App Engine

I have a model, below, and I would like to get all the distinct area values. The SQL equivalent is … Read more How To Get The Distinct Value Of One Of My Models In Google App Engine

Key Path Element Must Be Complete

I'm working through some documentation for the google cloud datastore API from google.cloud imp… Read more Key Path Element Must Be Complete

App Engine Local Datastore Content Does Not Persist

I'm running some basic test code, with web.py and GAE (Windows 7, Python27). The form enables … Read more App Engine Local Datastore Content Does Not Persist

Google App Engine - Multiple Child/parent

I want to make friend system that have db model like this: class Users(ndb.Model): username = n… Read more Google App Engine - Multiple Child/parent

Difference Between Dateproperty And Datetimeproperty

In layman's term, what's the difference between ndb.DateProperty and ndb.DateTimeProperty? … Read more Difference Between Dateproperty And Datetimeproperty

Ndb: Sort Query Results

In App Engine NDB, I am querying entities that have a repeated property. I would like to order the … Read more Ndb: Sort Query Results

How Efficient Is Google App Engine Ndb.delete_multi()?

I'm working on something to clear my database of ~10,000 entities, and my plan is to put it in … Read more How Efficient Is Google App Engine Ndb.delete_multi()?

Gae Python Ndb .put Not Synchronous On Development (but Works In Production)?

The following below should create a Counter model and use (deferred) tasks to increment the counter… Read more Gae Python Ndb .put Not Synchronous On Development (but Works In Production)?