Hi All,

I need to clear a few doubts. Let's take an example so that you know
what my doubt is :

I have a User object and each user performs an operation - say a
status update.

User {

private Long id;

private List<StatusUpdate> updates;

}


Now this seems all good but if I'm not wrong Appengine has no
provision for lazy loading. Now my problem is, when a users
StatusUpdate reaches say 100k or more, the List in the above case
would have so many objects in it which I obviously do not need.

What solution is better? Make StatusUpdate as an unowned class and
keeping a reference to User? Any thoughts, I hope I am clear with my
requirement.

-Nischal

-- 
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.

Reply via email to