假设我有如下实体:
@Document(collection = "doc_a")
public class A {
@Field("id")
private Integer id;
@Field("b")
private Collection<B> b;
...
}
public class B {
@Field("id")
private Integer id;
...
}
是否可以一起使用关于 A.id 和 B.id 的复合索引?
我的意思是也许像:
@CompoundIndex(name = "aid_bid_idx", def = "{'id', 'b.id'}")
提前致谢。