ListCollections 用于查询数据集 Collection 列表。
无。
collections, err := service.ListCollections() if err != nil { fmt.Println(err.Error()) } for _, collection := range collections { fmt.Println(collection) }
Go 调用执行上面的任务,返回 Collection 结构体地址列表 ([]*Collection) 。Collection 结构体包含的属性如下表所示。
属性 | 类型 | 说明 |
---|---|---|
CollectionName | string | 显示查询的 Collection 名称。 |
Description | string | 显示查询的 Collection 的描述。 |
Fields | []Field | 显示查询的字段列表。 |
Indexes | []interface{} | 显示查询的索引列表。 |
Stat | map | 统计/状态信息。
|
CreateTime | string | 数据集创建时间。 |
UpdateTime | string | 数据集更新时间。 |
UpdatePerson | string | 数据集更新人。 |