ListIndexes()
This method lists all indexes created within the specified collection.
func (c *Client) ListIndexes(ctx context.Context, opt ListIndexOption, callOptions ...grpc.CallOption) ([]string, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
ListIndexOption
This is an interface type. The listIndexOption
struct type implements this interface type.
You can use the NewListIndexOption()
function to get the concrete implementation.
NewListIndexOption()
The signature of this method is as follows:
func NewListIndexOption(collectionName string) *listIndexOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
Return
[]string
Example
indexes, err := cli.ListIndexes(ctx, milvusclient.NewListIndexOption("my_collection").WithFieldName("my_vector"))
if err != nil {
// handle err
}
fmt.Println(indexes)