remove trie, use prefix set instead

This commit is contained in:
fxsjy 2014-10-20 14:08:09 +08:00
parent 56e8336af1
commit ba87fcb01f
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-10-20: version 0.34
1. 提升性能词典结构由Trie改为Prefix Set内存占用减少2/3, 详见https://github.com/fxsjy/jieba/pull/187by @gumblex
2. 修复关键词提取功能的性能问题
2014-08-31: version 0.33
1. 支持自定义stop words; by @fukuball
2. 支持自定义idf词典; by @fukuball

View File

@ -1,4 +1,4 @@
__version__ = '0.32'
__version__ = '0.34'
__license__ = 'MIT'
import re

View File

@ -1,6 +1,6 @@
from distutils.core import setup
setup(name='jieba3k',
version='0.33',
version='0.34',
description='Chinese Words Segementation Utilities',
author='Sun, Junyi',
author_email='ccnusjy@gmail.com',