Skip to content Skip to sidebar Skip to footer
Showing posts with the label App Engine Ndb

Ever See Duplicate Ids When Using Google App Engine And Ndb?

class Entries(ndb.Model): description = ndb.StringProperty() seqid = ndb.IntegerProperty() li… Read more Ever See Duplicate Ids When Using Google App Engine And Ndb?

Linking To Entity From List

I have a Consults page that lists consults in the datastore. The list loop is like this: {% for con… Read more Linking To Entity From List

Optimizing A Inequality Query In Ndb Over Two Properties

I'm trying to do a query into a range of valid dates q = Licence.query(Licence.valid_from = tod… Read more Optimizing A Inequality Query In Ndb Over Two Properties

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()?

Google App Engine: Modifying 1000 Entities Using Taskqueue

I am hoping to modify 1000 entities using task queue, as suggested Zig Mandel in my original questi… Read more Google App Engine: Modifying 1000 Entities Using Taskqueue

How Is Ndb.stringproperty Equals A Python String?

I have this ndb Model class class foo(ndb.Model): abc = ndb.StringProperty() Now when I used abc… Read more How Is Ndb.stringproperty Equals A Python String?