We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b606387 commit 3eb2696Copy full SHA for 3eb2696
src/main/asciidoc/reference/mongodb.adoc
@@ -2518,14 +2518,14 @@ The following listing shows the `IndexOperations` interface:
2518
----
2519
public interface IndexOperations {
2520
2521
- void ensureIndex(IndexDefinition indexDefinition);
+ String ensureIndex(IndexDefinition indexDefinition);
2522
+
2523
+ void alterIndex(String name, IndexOptions options);
2524
2525
void dropIndex(String name);
2526
2527
void dropAllIndexes();
2528
- void resetIndexCache();
-
2529
List<IndexInfo> getIndexInfo();
2530
}
2531
0 commit comments