Re: [google-appengine] Re: @Persistent(serialized = "true") vs @Persistent

2012-08-26 Thread applehund
Thanks Amy! This makes sense :) Another question I have is do list objects that are serialized still count towards the 5000 member field limit? So currently if I have a GAE object with: *@Persistent* *private *Listfoo; and foo contains 5000+ objects then I can't load it from the datastore. Do

Re: [google-appengine] Re: @Persistent(serialized = "true") vs @Persistent

2012-08-15 Thread Amy Unruh
hi, The app engine JDO documentation goes into this in more detail-- take a look at the discussion of the field types. The https://developers.google.com/appengine/docs/java/datastore/jdo/dataclasses A serialized field is stored as a blob property. You can use it to set a field of your instance t

[google-appengine] Re: @Persistent(serialized = "true") vs @Persistent

2012-08-14 Thread applehund
*bump bump* On Sunday, August 12, 2012 1:59:23 PM UTC-7, applehund wrote: > > Hi there, can anyone explain the pros & cons of these two styles? Like if > I have an Integer member variable: > > *@Persistent* > *private* Integer foo; > > *@Persistent(serialized = "true")* > *private* Integer foo; >