空格分析器编辑

whitespace 分析器在遇到空格字符时将文本分解为词项。

示例输出编辑

response = client.indices.analyze(
  body: {
    analyzer: 'whitespace',
    text: "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
  }
)
puts response
POST _analyze
{
  "analyzer": "whitespace",
  "text": "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
}

上面的句子将产生以下词项

[ The, 2, QUICK, Brown-Foxes, jumped, over, the, lazy, dog's, bone. ]

配置编辑

whitespace 分析器不可配置。

定义编辑

它包含

分词器

如果您需要自定义 whitespace 分析器,则需要将其重新创建为 custom 分析器并进行修改,通常是通过添加标记过滤器。这将重新创建内置的 whitespace 分析器,您可以将其用作进一步自定义的起点

response = client.indices.create(
  index: 'whitespace_example',
  body: {
    settings: {
      analysis: {
        analyzer: {
          rebuilt_whitespace: {
            tokenizer: 'whitespace',
            filter: []
          }
        }
      }
    }
  }
)
puts response
PUT /whitespace_example
{
  "settings": {
    "analysis": {
      "analyzer": {
        "rebuilt_whitespace": {
          "tokenizer": "whitespace",
          "filter": [         
          ]
        }
      }
    }
  }
}

您可以在此处添加任何标记过滤器。