9

假设我有如下实体:

@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'}")

提前致谢。

4

2 回答 2

19

我已经在我的应用程序中尝试过这种复合索引,它也使用弹簧数据,并且工作正常。您只需要更正@CompoundIndex注释中的索引定义:

@CompoundIndex(name = "aid_bid_idx", def = "{'id' : 1, 'b.id' : 1}")
@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;
  ...
} 

如果您在 mongo shell 中使用 explain(如下所示)运行查询,您将看到将使用索引 *aid_bid_idx*。

db.doc_a.find({ "id" : 1, "b.id" : 1}).explain()

结果将是这样的:

{
    "cursor" : "BtreeCursor aid_bid_idx",
    ...
}
于 2012-12-27T11:33:46.753 回答
3

我遇到了同样的问题,对我来说 Miguel 的解决方案有效,但我必须将 @CompoundIndex 包装在 @CompoundIndexes 中,否则它不起作用(我使用的是 Spring Roo)。

@CompoundIndexes({
    @CompoundIndex(name = "aid_bid_idx", def = "{'id' : 1, 'b.id' : 1}")
})
@Document(collection = "doc_a")
public class A {...}
于 2014-09-28T16:16:20.337 回答