NEST 自定义分析器

Posted chenyishi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NEST 自定义分析器相关的知识,希望对你有一定的参考价值。

        public void SetAnalysis()
        
            if (!client.IndexExists("employee").Exists)
            
                client.CreateIndex("employee", 
                    i => i.Settings(
                        s => s.Analysis(a => a.CharFilters(c=>c.Mapping("&_to_and",m=>m.Mappings("&=> and ")))
                            .TokenFilters(t=>t.Stop("my_stopwords",ss=>ss.StopWords("the","a")))
                            .Analyzers(aa=>aa.Custom("es_std",
                                cu=>cu.CharFilters("html_strip","&_to_and").Tokenizer("standard").Filters("lowercase","my_stopwords"))))
                        
                        
                        ));
            

            client.Map<employee>(m => m.Properties(p => p.Text(t => t.Name("last_name").Analyzer("es_std"))).AutoMap());
        

  

以上是关于NEST 自定义分析器的主要内容,如果未能解决你的问题,请参考以下文章

MongoDB 和 Nest.js:为集合定义自定义名称

使用 NEST 创建自定义令牌过滤器

Nest js 和 typeorm 自定义存储库问题

Elasticsearch NEST使用指南:映射和分析

自定义博客园首页样式

Schema Generator 无法确定 DTO 中自定义对象的 GraphQL 输出类型