建立多元索引後,使用ListSearchIndex介面可以擷取某個資料表關聯的所有多元索引的列表資訊。
前提條件
已初始化Client。具體操作,請參見初始化OTSClient。
已在資料表上建立多元索引。具體操作,請參見建立多元索引。
參數
參數 | 說明 |
TableName | 資料表名稱,不可為空。 |
樣本
以下樣本用於列出指定表的多元索引列表。
func ListSearchIndex(client *tablestore.TableStoreClient, tableName string) {
request := &tablestore.ListSearchIndexRequest{}
request.TableName = tableName //設定資料表名稱。
resp, err := client.ListSearchIndex(request) //擷取資料表關聯的所有多元索引。
if err != nil {
fmt.Println("error: ", err)
return
}
for _, info := range resp.IndexInfo {
fmt.Printf("%#v\n", info) //列印多元索引的資訊。
}
fmt.Println("ListSearchIndex finished, requestId:", resp.ResponseInfo.RequestId)
}
相關文檔
如果要查詢某個多元索引的詳細資料,例如多元索引的欄位資訊、索引結構等,您可以使用查詢多元索引描述資訊功能實現。具體操作,請參見查詢多元索引描述資訊。
如果不再使用某個多元索引,您可以刪除該多元索引。具體操作,請參見刪除多元索引。