企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
有些时候很难理解分词的过程和实际被存储到索引中的词条,特别是你刚接触Elasticsearch。为了理解发生了什么,你可以使用 analyze API 来看文本是如何被分析的。 <br/> 演示步骤如下: **1. 指定分析器与要分析的文本** ```json GET /_analyze { "analyzer": "standard", "text": "Text to analyze" } ``` **2. 获取的响应如下** 结果中每个元素代表一个单独的词条。 ```json { "tokens" : [ { "token" : "text", # token实际存储到索引中的词条 "start_offset" : 0, # start_offset和end_offset指明字符在原始字符串中的位置 "end_offset" : 4, "type" : "<ALPHANUM>", "position" : 0 # position指明词条在原始文本中出现的位置 }, { "token" : "to", "start_offset" : 5, "end_offset" : 7, "type" : "<ALPHANUM>", "position" : 1 }, { "token" : "analyze", "start_offset" : 8, "end_offset" : 15, "type" : "<ALPHANUM>", "position" : 2 } ] } ```