update readme

This commit is contained in:
yanyiwu 2016-05-09 21:23:05 +08:00
parent 02df433f73
commit e4e1b4e953
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# CppJieba ChangeLog
## next version
+ add TextRankExtractor by [@questionfish]
## v4.8.0
+ rewrite QuerySegment, make `Jieba::CutForSearch` behaves the same as [jieba] `cut_for_search` api
@ -222,3 +226,4 @@ upgrade:
[issue50]:https://github.com/yanyiwu/cppjieba/issues/50
[qinwf]:https://github.com/yanyiwu/cppjieba/pull/53#issuecomment-176264929
[jieba]:https://github.com/fxsjy/jieba
[@questionfish]:https://github.com/questionfish

View File

@ -16,7 +16,7 @@ CppJieba是"结巴(Jieba)"中文分词的C++版本
## 特性
+ 源代码都写进头文件`include/cppjieba/*.hpp`里,`include`即可使用。
+ 支持`utf-8, gbk`编码,但是推荐使用`utf-8`编码 因为`gbk`编码缺少严格测试,慎用
+ 支持`utf8`编码。
+ 项目自带较为完善的单元测试,核心功能中文分词(utf8)的稳定性接受过线上环境检验。
+ 支持载自定义用户词典,多路径时支持分隔符'|'或者';'分隔。
+ 支持 `Linux` , `Mac OSX`, `Windows` 操作系统。