Very quick question...

If I have a object with a @Persistent List field and I do the
following:

list.add(1)
list.add(2)
list.add(3)

Once I have saved the object and then retrieved it again will the
objects in the list be in the same order as they were added or as a
consequence of saving the list in the datastore mean the list may be
reordered? I dont think this will be the case but I just want to make
absolutely certain!

More importantly, lets imagine the order doesn't change, is it
possible in the future that the list order may be random? I ask as I
am currently assuming the most recently added object is at the end of
the list and need to be certain it's safe to do so.

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