启用反向文档频率并禁用术语频率和字段长度规范

时间:2016-05-17 12:22:37

标签: elasticsearch

我想禁用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种方法进行相关性评分吗?

0 个答案:

没有答案