我想禁用TF(Term Frequency)和Field length规范来计算弹性文档的相关性得分。在弹性搜索文档中,它显示了如何禁用TF
PUT /my_index
{
"mappings": {
"doc": {
"properties": {
"text": {
"type": "string",
"index_options": "docs"
}
}
}
}
}
和场长规范
PUT /my_index
{
"mappings": {
"doc": {
"properties": {
"text": {
"type": "string",
"norms": { "enabled": false }
}
}
}
}
}
但我想知道如何只启用IDF并禁用其他两个?弹性搜索默认使用所有3种方法进行相关性评分吗?