日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

列出多元索引列表

創(chuàng)建多元索引后,使用ListSearchIndex接口可以獲取某個數(shù)據(jù)表關聯(lián)的所有多元索引的列表信息。

前提條件

  • 已初始化Client。具體操作,請參見初始化OTSClient
  • 已創(chuàng)建數(shù)據(jù)表并寫入數(shù)據(jù)。
  • 已在數(shù)據(jù)表上創(chuàng)建多元索引。具體操作,請參見創(chuàng)建多元索引

參數(shù)

參數(shù)

說明

TableName

數(shù)據(jù)表名稱,不能為空。

示例

以下示例用于列出指定表的多元索引列表。

func ListSearchIndex(client *tablestore.TableStoreClient, tableName string) {
    request := &tablestore.ListSearchIndexRequest{}
    request.TableName = tableName //設置數(shù)據(jù)表名稱。
    resp, err := client.ListSearchIndex(request) //獲取數(shù)據(jù)表關聯(lián)的所有多元索引。
    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)
}

相關文檔

  • 如果要查詢某個多元索引的詳細信息,例如多元索引的字段信息、索引結構等,您可以使用查詢多元索引描述信息功能實現(xiàn)。具體操作,請參見查詢多元索引描述信息

  • 如果不再使用某個多元索引,您可以刪除該多元索引。具體操作,請參見刪除多元索引