如何使用Spring数据mongo @CompoundIndex与子集合?

时间:2012-12-26 13:00:41

标签: mongodb spring-data spring-data-mongodb

假设我有以下类似的实体:

@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?

我的意思可能是:

@CompoundIndex(name = "aid_bid_idx", def = "{'id', 'b.id'}")

提前致谢。

2 个答案:

答案 0 :(得分:10)

我在我的应用程序中尝试过这种复合索引,它也使用了弹簧数据,并且运行正常。 您只需更正@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",
    ...
}

答案 1 :(得分:1)

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

@CompoundIndexes({
    @CompoundIndex(name = "aid_bid_idx", def = "{'id' : 1, 'b.id' : 1}")
})
@Document(collection = "doc_a")
public class A {...}