这是我的简单实体:
import com.google.appengine.api.datastore.Key;
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import javax.jdo.annotations.PrimaryKey;
@PersistenceCapable
public class Food {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key id;
@Persistent
private String name;
@Persistent
private String description;
public Key getId() {
return (id);
}
public void setId(Key id) {
this.id = id;
}
public String getName() {
return (name);
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return (description);
}
public void setDescription(String description) {
this.description = description;
}
}
我正以这种方式装载我的食物:
try {
pm = PMF.get().getPersistenceManager();
Query q = pm.newQuery(Food.class);
foods = (List<Food>) q.execute();
} catch (Exception exc) {
exc.printStackTrace();
}
finally {
pm.close();
}
为每个Food实体自动生成密钥。我也在使用HRD。所以...上面的查询(pm.newQuery(Food.class);)没有很强的一致性,一次返回所有结果,第二次没有返回新创建的食物。如何以这种方式更改此查询,即每次从数据库中获取所有食物。在数据存储文档中,我读过应该是祖先查询,但我没有祖先路径。 (我应该说我是数据存储区的新手,并且仍然从昨天开始学习,但这个花了很多时间)。请帮我。
答案 0 :(得分:2)
关于App引擎数据存储的工作原理和强大的一致性的两个优秀且易于理解的视频:
https://www.youtube.com/watch?v=fQazhzcC-rg
第2部分:数据存储区查询,索引和事务
答案 1 :(得分:1)
如果不使用父级,则无法实现强一致性。这就是重点。要么你使用祖先,要么你接受有时你的查询结果将是陈旧的(并使用例如memcache来绕过它)。