Package | Description |
---|---|
com.couchbase.client.java.manager.query |
APIs related to N1QL query index management.
|
Modifier and Type | Method and Description |
---|---|
DropQueryIndexOptions |
DropQueryIndexOptions.collectionName(String collectionName)
Deprecated.
`collection.queryIndexes()` should now be used for collection-related query index operations.
|
static DropQueryIndexOptions |
DropQueryIndexOptions.dropQueryIndexOptions()
Creates a new instance with default values.
|
DropQueryIndexOptions |
DropQueryIndexOptions.ignoreIfNotExists(boolean ignore)
If the index does not exist, an exception will be thrown unless this is set to true.
|
DropQueryIndexOptions |
DropQueryIndexOptions.scopeName(String scopeName)
Deprecated.
`collection.queryIndexes()` should now be used for collection-related query index operations.
|
Modifier and Type | Method and Description |
---|---|
Mono<Void> |
ReactiveCollectionQueryIndexManager.dropIndex(String indexName,
DropQueryIndexOptions options)
Drops a query index from this collection with custom options.
|
CompletableFuture<Void> |
AsyncCollectionQueryIndexManager.dropIndex(String indexName,
DropQueryIndexOptions options)
Drops a query index from this collection with custom options.
|
void |
CollectionQueryIndexManager.dropIndex(String indexName,
DropQueryIndexOptions options)
Drops a query index from this collection with custom options.
|
void |
QueryIndexManager.dropIndex(String bucketName,
String indexName,
DropQueryIndexOptions options)
Drops a query index from a bucket with custom options.
|
Mono<Void> |
ReactiveQueryIndexManager.dropIndex(String bucketName,
String indexName,
DropQueryIndexOptions options)
Drops a query index from a bucket with custom options.
|
CompletableFuture<Void> |
AsyncQueryIndexManager.dropIndex(String bucketName,
String indexName,
DropQueryIndexOptions options)
Drops a query index from a bucket with custom options.
|
Copyright © 2024 Couchbase, Inc.. All rights reserved.