mirror of
https://github.com/fumiama/jieba.git
synced 2026-06-05 16:50:39 +08:00
10 lines
172 B
Go
10 lines
172 B
Go
package cache
|
|
|
|
type Cacher interface {
|
|
SetDict(string) error
|
|
LoadUserDict(string) error
|
|
AddWord(string, string, float64)
|
|
Get(string) (float64, bool)
|
|
Total() float64
|
|
}
|