gpt4 book ai didi

mongodb - 如何使用吗啡在复合键上注释索引

转载 作者:可可西里 更新时间:2023-11-01 09:21:00 26 4
gpt4 key购买 nike

我使用的是吗啡 github 版本 1.2.2。我知道如何在吗啡实体的一个字段上注释索引,但是有没有办法在两个字段的组合上注释索引。例如,如果我想在字段 a 和 b 上有一个复合索引,那么下面类的注释是什么。

@Entity
public class TestClass
{
@Property("a")
private int fieldA;
@Property("b")
private int fieldB;
//how to annotate index of compound key fieldA and fieldB using morphia index annotation?
}

提前致谢。

最佳答案

@Entity
@Indexes(@Index(name = "aAndB", value = "a, b"))
public class TestClass
{
@Property("a")
private int fieldA;
@Property("b")
private int fieldB;
//how to annotate index of compound key fieldA and fieldB using morphia index annotation?
}

为索引命名是可选的。您还可以使复合索引唯一。

关于mongodb - 如何使用吗啡在复合键上注释索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14266367/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com