[appengine-java] Denormalization model help

2011-01-09 Thread Sydney
I have the following model: Country (name*, ListCity) City (name*, ListEvent) Event (id*, description, timeGMT, ListTicket, ListPerformer) Ticket (id*, type, price, quantity) Performer(id*, band, startTime) So this is a 4-level deep model. Here is some of the query I want to run: All Country

Re: [appengine-java] Denormalization model help

2011-01-09 Thread Dzmitry Lazerka
How about: Country (name*) City (name*, Key countryKey) Event (id*, description, timeGMT, ListTicket, ListPerformer, Key cityKey) ? - Best regards, Dzmitry Lazerka On Sun, Jan 9, 2011 at 11:17, Sydney sydney.henr...@gmail.com wrote: I have the following model: Country (name*, ListCity)