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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to