Sorry, I've actually just gone back and followed your last few messages.

If you are really going to go down the route of persisting it to the 
datastore (and I still think that's wrong), then create a completely new 
Entity type.

e.g.

public class CityData {

public static final String ALL_CITIES = "ALL_CITIES";

@Id
private String id;

@Serialized
private List<City> cities;

}

Then persist that with a key shown in the static variable - then whenever 
you really need the data, you can just retrieve it by the same string key.

I'm still confused as to why you couldn't throw all of this data into a 
static file containing JSON / XML, as Jeff and Brandon suggested?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/z8j7DLksKisJ.
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?hl=en.

Reply via email to