package cache2go import "errors" var ( ErrKeyNotFound = errors.New("键不在缓存里面") ErrKeyNotFoundOrLoadable = errors.New("键不存在或不在缓存里面") )