Vespa 是否支持选定检索的场投影?
Does Vespa support field projection for selected retrieval?
Vespa 是否支持 selected 检索的场投影? (类似于弹性搜索中的https://www.elastic.co/guide/en/elasticsearch/reference/current/search-fields.html)
感兴趣:
- select 除 a,b 之外的所有字段
- select 字段 *_name - [select 所有以 _name 结尾的字段名称]
- 排除字段 *_name - [排除所有以 _name 结尾的字段名称]
Vespa 今天不支持此功能,但欢迎在 https://github.com/vespa-engine/vespa/issues
提出功能请求
您可以配置摘要 类,这也比在查询时解决此问题更有效。参见 https://docs.vespa.ai/en/document-summaries.html
document foo {
field a ..
field b ..
field c ..
}
document-summary ab {
field a .. { source: a}
field b .. { source: b}
}
Vespa 是否支持 selected 检索的场投影? (类似于弹性搜索中的https://www.elastic.co/guide/en/elasticsearch/reference/current/search-fields.html)
感兴趣:
- select 除 a,b 之外的所有字段
- select 字段 *_name - [select 所有以 _name 结尾的字段名称]
- 排除字段 *_name - [排除所有以 _name 结尾的字段名称]
Vespa 今天不支持此功能,但欢迎在 https://github.com/vespa-engine/vespa/issues
提出功能请求您可以配置摘要 类,这也比在查询时解决此问题更有效。参见 https://docs.vespa.ai/en/document-summaries.html
document foo {
field a ..
field b ..
field c ..
}
document-summary ab {
field a .. { source: a}
field b .. { source: b}
}