- Queries without extra index in GAE
- public class Person{
- private int born;
- private String sex;
- private List<String> likes;
- //some other fields
- ...
- }
- select from Person where
- likes IN ("potatoes", "fish") AND
- born IN (1975,1976....2011)
- select from Person where
- sex = 'female' AND
- likes = "carrots" AND
- born IN (1900,1901....1980)