作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 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/
我是一名优秀的程序员,十分优秀!