我目前正在使用fuzziness
选项,我想添加"前缀功能"查找其中一个字段包含以X开头的术语的文档。
我有一个multi_match
查询,根据我的理解,您不能将phrase_prefix
与fuzziness
一起使用。还有其他方法吗?
这是我的疑问:
"query": {
"multi_match": {
"query": this.queryTerm,
"operator": "and",
"fields": ["title", "content", "author.name", "tags"],
"fuzziness": "AUTO"
}
}