Hi,
I read in a post that the length of member variable names contributes
to the amount of storage space your app uses, example:
class Farm {
private String mFarmersFavoriteCropToPlant;
}
would take more space to store than:
class Farm {
private String m;
}
might not matter for a handful of instances, but if I have thousands
of records... is this true?
Thanks
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" 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-java?hl=en.