在搜索定义中,结构内的字段不能有“属性”索引。
http://docs.vespa.ai/documentation/reference/search-definitions-reference.html#field_types
此外,struct 和 maps 默认不是属性。生成的搜索定义如下所示:
struct nlp {
field token type string {
match: text //can't add indexing here
}
}
field n type nlp {
indexing: summary //can't add attribute here
}
如何添加搜索定义以便我们可以按“n.token”分组?是否可以为结构字段添加属性或索引?或者按不是属性的字段分组?