Site icon 时鹏亮的Blog

Elasticsearch 查看分词结果

请知悉:本文最近一次更新为 5年 前,文中内容可能已经过时。

有时候需要核对分词器是否工作良好,可以使用Indices APIs的Analyze来分析。
官方API示例:

GET _analyze
{
"tokenizer" : "keyword",
"filter" : ["lowercase"],
"text" : "this is a test"
}

Yii的PHP中示例:

/*
* 分析器查看用例 文本是如何被分析的
$params = [
'index' => $this->commonIndex,
'analyzer' => 'number_zh_index_analyzer2',
'text' => '英雄联盟最强王者23'
];
echo json_encode($this->client->indices()->analyze($params));die();
*/

相关资料:
https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-analyze.html
https://blog.csdn.net/xifeijian/article/details/51201966


如您从本文得到了有价值的信息或帮助,请考虑扫描文末二维码捐赠和鼓励。

尊重他人劳动成果。转载请务必附上原文链接,我将感激不尽。


与《Elasticsearch 查看分词结果》相关的博文:

Exit mobile version