1
0
mirror of https://github.com/fumiama/jieba.git synced 2026-06-05 16:50:39 +08:00
Files
jieba/cache/cache.go
2015-03-20 18:38:08 +08:00

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
}