gpt4 book ai didi

spring - 如何在 Spring 或 Spring Boot 中以编程方式在 Spring Mongo 数据中创建复合索引?

转载 作者:行者123 更新时间:2023-12-04 15:37:49 28 4
gpt4 key购买 nike

如何在 Java 中以编程方式使用 Spring Data 创建 MongoDB 复合索引?
使用 MongoTemplate 我可以创建一个这样的索引:mongoTemplate.indexOps("collectionName").ensureIndex(new Index().on("fieldName", Sort.Direction.DESC) .
有没有办法创建复合键?
我看到有类 CompoundIndexDefinition ,顾名思义,它似乎正在这样做,但我无法让它工作。

最佳答案

您可以在 Java 中以编程方式使用 Spring Data 在任何集合上创建复合索引,如下所示:

// Compound indexes on the fields: fieldOne & fieldTwo
// db.groups.createIndex({fieldOne:1, fieldTwo:1})
IndexDefinition index =
new CompoundIndexDefinition(new Document().append("fieldOne", 1).append("fieldTwo", 1));
mongoTemplate.indexOps(CollectionName.class).ensureIndex(index);
上面的例子将创建与 mongo shell 相同的索引:
db.groups.createIndex({fieldOne:1, fieldTwo:1})

关于spring - 如何在 Spring 或 Spring Boot 中以编程方式在 Spring Mongo 数据中创建复合索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59140983/

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