AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
[[standard-analyzer]] === standard Analyzer The `standard` analyzer is used by default for any full-text `analyzed` string field. ((("standard analyzer"))) If we were to reimplement the `standard` analyzer as a <<custom-analyzers,`custom` analyzer>>, it would be defined as follows: [role="pagebreak-before"] [source,js] -------------------------------------------------- { "type": "custom", "tokenizer": "standard", "filter": [ "lowercase", "stop" ] } -------------------------------------------------- In <<token-normalization>> and <<stopwords>>, we talk about the `lowercase`, and `stop` _token filters_, but for the moment, let's focus on the `standard` _tokenizer_.