2020-09-07 13:07:36 +00:00
|
|
|
package kv
|
|
|
|
|
2020-09-09 07:24:07 +00:00
|
|
|
import "go.etcd.io/etcd/clientv3"
|
|
|
|
|
2020-09-07 13:07:36 +00:00
|
|
|
type Base interface {
|
|
|
|
Load(key string) (string, error)
|
|
|
|
Save(key, value string) error
|
|
|
|
Remove(key string) error
|
2020-09-09 07:24:07 +00:00
|
|
|
Watch(key string) clientv3.WatchChan
|
2020-09-18 07:44:09 +00:00
|
|
|
WatchWithPrefix(key string) clientv3.WatchChan
|
2020-11-02 02:26:33 +00:00
|
|
|
LoadWithPrefix(key string) ([]string, []string, error)
|
2020-10-29 01:31:08 +00:00
|
|
|
Close()
|
2020-09-07 13:07:36 +00:00
|
|
|
}
|