[appengine-java] Re: Non-Serializable and Memcache

2010-05-03 Thread Jake
Hey John, Yes and no. In order to store something into the datastore, it needs to be serialized and, thus, serializable. Having a class 'implement Serializable' flags it as having that property (according to Java), however there are still many things that can cause the serialization process to f

[appengine-java] Re: Non-Serializable and Memcache

2010-04-30 Thread jreilly
Meaning: @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Location implements Serializable { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Long id; @Persistent private Long deptId; So simply adding th

[appengine-java] Re: Non-Serializable and Memcache

2010-04-30 Thread datanucleus
Does it "implements Serializable" ? No. -- 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-ja