What is the difference between Kind and Entity in Google App Engine datastore?

link|improve this question

20% accept rate
feedback

2 Answers

An Entity is an individual record that gets stored and retrieved from the datastore.

The Kind is the unique string identifier of the type of entity.

For example, "Joe" is an Entity with age=42, dob=10-12-2000, and Kind "Person".

link|improve this answer
So this would be the Table name in relational-table speak? – rtfminc Jan 18 '11 at 5:18
@rtfminc If by 'this' you mean 'kind', yes. – Nick Johnson Jan 18 '11 at 5:52
yes, you are correct in your assumption and thanks for clarification given my unclear question. :) – rtfminc Jan 19 '11 at 0:41
feedback

'Kind' usually refers to simplified name of your entity class:

String kind = myEntity.getClass().getSimpleName();

But it might be whatever you set it to be. (If the persistence framework allows you to. I'd recommend Objectify BTW. :)
With Objectify you can define it like this:

@Entity(name = "MSSE")
class MySuperSmartEntity
{
}

Setting kind to something shorter than what is the class name might save you some serious decent space in datastore indexes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.