messense/jieba-rs

能否修改load_dict的实现逻辑?

wyhhh opened this issue · 2 comments

wyhhh commented

我发现你在new时load字典使用split + collect,这其实是一种很低效的方法,能否换手写不去alloc和split?这样在new时能快一点。

Feel free to try.

wyhhh commented

给你写个返回 -> Option<Result<(word: String,freq: usize,tag: String), Error>>的迭代器吧,剩下你自己处理