如何使用API​​创建Couchbase全文搜索索引别名

时间:2019-01-28 15:55:17

标签: couchbase

使用管理界面创建全文搜索索引时,我可以使用 “显示卷曲命令以修改此索引定义”选项以获取卷曲命令。

enter image description here

喜欢这个:

curl -XPUT -H "Content-Type: application/json" \ -u Administrator:password
http://localhost:8094/api/index/idx_order_customer -d \
'{definition body}'

是否也可以使用curl选项来创建索引别名。

谢谢

1 个答案:

答案 0 :(得分:3)

是的,有可能。这是到同一端点的PUT。示例:

PUT /api/index/{indexName}

具有与示例类似的JSON正文。实际上,当您创建新索引时,“索引定义预览”将以JSON正文显示在Couchbase Server UI中。

enter image description here

有关更多信息,请查看文档:{​​{3}}