在查询的时候可以使用 "_source" 参数来排除指定的字段。例如:
GET index_name/_search
{
"_source": ["field1", "field2"],
"query": {
"match_all": {}
}
}
上面的代码将查询 index_name 索引中的 field1 和 field2 字段,不查询其他字段。
在查询的时候可以使用 "_source" 参数来排除指定的字段。例如:
GET index_name/_search
{
"_source": ["field1", "field2"],
"query": {
"match_all": {}
}
}
上面的代码将查询 index_name 索引中的 field1 和 field2 字段,不查询其他字段。