NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
[[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_.