I'm curious as to whether field name lengths impact performance when you have a high volume of writes on a very simple object type to the datastore.
I know it's not the case for relational dbs, but for the datastore I'm not certain how field names are stored/maintained for every object of a particular type as those fields can vary amongst those objects. As an example, if I have a small model, all ints like this: class Example(db.Model): some_id = db.IntegerProperty() first_integer = db.IntegerProperty() second_integer = db.IntegerProperty() Is there any performance impact (even a tiny one) when doing very frequent writes when compared to something like this: class Example(db.Model): s = db.IntegerProperty() i = db.IntegerProperty() j = db.IntegerProperty() -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
