在我的数据存储区中,我有一个帖子实体,它有一个发件人,这个发件人有一个位置列表。基本上,这看起来像这样:
@Entity
@Cache
@Unindex
@Searchable
public class Post {
@Index
@Load(WithSender.class)
@NonNull @Getter @Setter
protected Ref<User> sender;
@Index
@Getter
protected long creation;
}
@Entity
@Cache
@Unindex
public class User {
@Index
@NotNull
@Email
@NonNull
@Getter
@Setter
private String email;
@Size(max = 50)
@Getter
@Setter
private String firstName;
@Size(max = 50)
@Getter
@Setter
private String lastName;
@Index
@Setter
@Getter
protected List<Key<Region>> regions;
}
我想要做的是,能够查询属于该用户的区域列表中的区域的用户发送的所有帖子,以及按创建顺序查询。
基本上,我尝试过这样做:
query = query.filter("sender.regions", "key").order("-creation");
当我第一次执行查询时,AppEngine请求我创建此索引:
<datastore-index kind="Post" ancestor="false" source="manual">
<property name="sender.regions" direction="asc"/>
<property name="creation" direction="desc"/>
</datastore-index>
但结果仍无可救药地空洞......如果有人有建议,我会很高兴。谢谢!
答案 0 :(得分:3)
通过&#34; sender.regions&#34;查询帖子。应该嵌入发件人实体。
没有像#34;加入&#34;在数据存储区中。您可以先在邮件中嵌入发件人,也可以先按地区查询发件人密钥,然后使用这些发件人密钥查询帖子。
希望它有所帮助。
答案 1 :(得分:0)
我最终做的是将地区嵌入邮政。我在其他几个环境中需要它,所以在创建时,我会在帖子中复制发件人的区域,这样我所有的麻烦都结束了! :)