ReleaseCollection()
This method releases the specified collection.
func (c *Client) LoadCollection(ctx context.Context, option LoadCollectionOption, callOptions ...grpc.CallOption) (LoadTask, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
ReleaseCollectionOption
This is an interface type. The releaseCollectionOption
struct type implements this interface type.
You can use the NewReleaseCollectionOption()
function to get the concrete implementation.
NewReleaseCollectionOption()
The signature of this method is as follows:
func NewReleaseCollectionOption(collectionName string) *releaseCollectionOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
Return
LoadTask
Example
import (
"context"
"github.com/milvus-io/milvus/client/v2/milvusclient"
)
err = cli.ReleaseCollection(ctx, milvusclient.NewReleaseCollectionOption("custom_quick_setup"))
if err != nil {
// handle error
}