Are there advantages to storing Keys over String in Google App Engine datastore.
For example:
class Model(ndb.Model):
user_key = ndb.KeyProperty()
VS
class Model(ndb.Model):
user_id = ndb.StringProperty()
- Why would you want to store a Key instead of the StringID? Is it only for convenience?
- Which uses less storage space?
- Which is faster to query?