DropIndex()
This method drops the specified index.
func (c *Client) DropIndex(ctx context.Context, opt DropIndexOption, callOptions ...grpc.CallOption) error
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
DropIndexOption
This is an interface type. The dropIndexOption
struct type implements this interface type.
You can use the NewDropIndexOption()
function to get the concrete implementation.
NewDropIndexOption()
The signature of this method is as follows:
func NewDropIndexOption(collectionName string, indexName string) *dropIndexOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
| Name of the target index. |
|
Return
Null
Example
err = cli.DropIndex(ctx, milvusclient.NewDropIndexOption("my_collection", "my_index"))
if err != nil {
// handle err
}