jieba icon indicating copy to clipboard operation
jieba copied to clipboard

/tmp/jieba.cache 写文件冲突

Open withchencheng opened this issue 3 years ago • 1 comments

jieba貌似会写入/tmp/jieba.cache

Loading model from cache /tmp/jieba.cache
Dumping model to file cache /tmp/jieba.cache

但是一个server上有多个用户时,就会有写文件冲突。

withchencheng avatar Jan 17 '21 02:01 withchencheng

change dir as you want:

import jieba
jieba.dt.tmp_dir = expanduser("~/.cache/jieba")

tshu-w avatar Jun 11 '21 06:06 tshu-w