In Python/Google app engine, I'd like to store a property as a key name in order to save resources and speed things up. But I don't know how to get the list of key names.
As an example, consider the data model:
class Book(db.Model):
isbn = db.StringProperty() # Make this a key name instead.
category = db.StringProperty()
author = db.StringProperty()
title = db.StringProperty()
...
Now let's say I set the key name to the isbn instead of making it a property name:
new_book = Book(category="fantasy,comedy", title="The Light Fantastic", author="Terry Pratchett", key_name=isbn_number)
I guess that, if I could find a way of getting a list of key names, I would save resources? For example, when checking if a particular book is already in the collection.
Is this correct, and how do I get a list of key names?
If this isn't the case, then would the following be a decent compromise:
class ISBN(db.Model):
isbn = db.StringProperty()
class Book(db.Model):
isbn = db.ReferenceProperty(ISBN)
category = db.StringProperty()
author = db.StringProperty()
title = db.StringProperty()
...
Would it save resources/be faster?
categoryandauthoraStringListProperty(or whatever they called it, I haven't used GAE in a while) instead of just a string. It's easier to manipulate and search. – Haochi Mar 23 '11 at 15:39