An open API service indexing awesome lists of open source software.

https://github.com/codespilot/lucene.net.jieba

Lucene.Net.Jieba
https://github.com/codespilot/lucene.net.jieba

Last synced: about 1 year ago
JSON representation

Lucene.Net.Jieba

Awesome Lists containing this project

README

          

# JIEba-netcore

基于[jieba.NETCore](https://github.com/linezero/jieba.NET)

在.net core版的JIEba分词上,做了修改,使其支持net core2.0 和支持[Lucene.net](https://github.com/apache/lucenenet)接口
ps: 修改了JIEba分词,导致的高亮bug

# NuGet

>[Lucene.Net.Jieba](https://www.nuget.org/packages/Lucene.Net.Jieba/)

# 集成到Lucene.Net示例

```c#
Analyzer analyzer = new JiebaAnalyzer(TokenizerMode.Search);
Analyzer analyzer = new JiebaAnalyzer(TokenizerMode.Default);
TokenStream = analyzer.GetTokenStream(str,indexReader);

```