如何在没有完整模式的情况下列出 pilosa 中的索引名称
How to list index names in pilosa without the complete schema
curl -XGET localhost:10101/index 将 returns 中指定索引的架构 JSON。如何在不返回完整架构的情况下仅获取 pilosa 中存在的索引名称?
一种选择是使用命令行工具来解析和过滤 JSON 响应。例如,使用 jq:
curl localhost:10101/schema | jq .indexes[].name
将 return 引用的名称列表,每行一个:
"index1"
"index2"
如果您不需要引号,您也可以将 -r
传递给 jq
。
curl -XGET localhost:10101/index 将 returns 中指定索引的架构 JSON。如何在不返回完整架构的情况下仅获取 pilosa 中存在的索引名称?
一种选择是使用命令行工具来解析和过滤 JSON 响应。例如,使用 jq:
curl localhost:10101/schema | jq .indexes[].name
将 return 引用的名称列表,每行一个:
"index1"
"index2"
如果您不需要引号,您也可以将 -r
传递给 jq
。