Efficient way to store relation values in NDB
问题 I've this data model (I made it, so if there's a better way to do it, please let me know). Baically I've Club that can have many Courses . now I want to know all the members and instructors of a Club. members and instructors are stored in the Course model, and Club has a reference to them. See the code.. class Course(ndb.Model): ... instructor_keys = ndb.KeyProperty(kind="User", repeated=True) member_keys = ndb.KeyProperty(kind="User", repeated=True) @property def instructors(self): return