Browse Source

Update reference documentation for IndexOperations.

Make sure the reference documentation is in line with available methods. Update signatures and remove no longer supported ones.

Closes: #4587
pull/4616/head
Christoph Strobl 2 years ago
parent
commit
d6315632a6
No known key found for this signature in database
GPG Key ID: E6054036D0C37A4B
  1. 6
      src/main/antora/modules/ROOT/pages/mongodb/template-collection-management.adoc

6
src/main/antora/modules/ROOT/pages/mongodb/template-collection-management.adoc

@ -15,16 +15,14 @@ Imperative:: @@ -15,16 +15,14 @@ Imperative::
----
public interface IndexOperations {
void ensureIndex(IndexDefinition indexDefinition);
String ensureIndex(IndexDefinition indexDefinition);
void alterIndex(String name);
void alterIndex(String name, IndexOptions options);
void dropIndex(String name);
void dropAllIndexes();
void resetIndexCache();
List<IndexInfo> getIndexInfo();
}
----

Loading…
Cancel
Save