We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45ea9e0 commit d631563Copy full SHA for d631563
src/main/antora/modules/ROOT/pages/mongodb/template-collection-management.adoc
@@ -15,16 +15,14 @@ Imperative::
15
----
16
public interface IndexOperations {
17
18
- void ensureIndex(IndexDefinition indexDefinition);
+ String ensureIndex(IndexDefinition indexDefinition);
19
20
- void alterIndex(String name);
+ void alterIndex(String name, IndexOptions options);
21
22
void dropIndex(String name);
23
24
void dropAllIndexes();
25
26
- void resetIndexCache();
27
-
28
List<IndexInfo> getIndexInfo();
29
}
30
0 commit comments